You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Trying to statically build my personal project (here). All dependencies build or found in cachix/nixpkgs but the build fails with a <mypkg>.cabal was modified manually, please use --force... error:
System Details
❯ nix --version
nix (Nix) 2.3.3
OS: NixOS 19.09.2331.64a3ccb852d (Loris)
resolver: lts-12.25
Using the default stack-project-builder script and default command to build
❯ stack --version
2.1.3.1 x86_64 hpack-0.32.0
The Error
patching script interpreter paths in /nix/store/0vmwrghjzi3zjd9xyc50k0zfcrpaw3mi-hpack-0.28.2
checking for references to /build/ in /nix/store/0vmwrghjzi3zjd9xyc50k0zfcrpaw3mi-hpack-0.28.2...
cannot find section .dynamic
building '/nix/store/zik2b383wxvqfafvssvh80bqfkkw8sny-vsat-0.1.0.0.drv'...
setupCompilerEnvironmentPhase
Build with /nix/store/p2l0j6hwl8c7dlxb318wwkji2hzsphki-ghc-8.4.4.
unpacking sources
unpacking source archive /nix/store/grpbilla8pl5kw9njcd174a22ia4gkrg-haskell
source root is haskell
patching sources
compileBuildDriverPhase
Determined cabalPackageId as Cabal-2.2.0.1-FmPcs9btIHM2Dcb9OsF5gI
setupCompileFlags: -package-db=/build/setup-package.conf.d -j4 -threaded -package-id Cabal-2.2.0.1-FmPcs9btIHM2Dcb9OsF5gI
[1 of 1] Compiling Main ( Setup.hs, /build/Main.o )
Linking Setup ...
updateAutotoolsGnuConfigScriptsPhase
configuring
vsat.cabal was modified manually, please use --force to overwrite.
builder for '/nix/store/zik2b383wxvqfafvssvh80bqfkkw8sny-vsat-0.1.0.0.drv' failed with exit code 1
error: build of '/nix/store/zik2b383wxvqfafvssvh80bqfkkw8sny-vsat-0.1.0.0.drv' failed
Note that I received the same error after deleting my cabal file, figuring Hpack would generate a new one.
The text was updated successfully, but these errors were encountered:
doyougnu
changed the title
Attempt to build stack project failes with: <mypkg>.cabal was modified manually...
Attempt to build stack project fails with: <mypkg>.cabal was modified manually...
Apr 13, 2020
In practice, just deleting the .cabal or package.yaml in preConfigure fixes that stuff.
But I'm not happy yet with the UX, especially because I've made some effort in the past so that things like that don't happen: NixOS/cabal2nix@5721bed But that fix was for cabal2nix, while for you it happends during configure phase. I'm not quite sure what invokes hpack here, Cabal itself?
Could you give me the full reproducer for it (I couldn't find the files you use to build the above error above), so I can check that?
Trying to statically build my personal project (here). All dependencies build or found in cachix/nixpkgs but the build fails with a
<mypkg>.cabal was modified manually, please use --force...
error:System Details
OS: NixOS 19.09.2331.64a3ccb852d (Loris)
resolver: lts-12.25
Using the default stack-project-builder script and default command to build
The Error
Note that I received the same error after deleting my cabal file, figuring Hpack would generate a new one.
The text was updated successfully, but these errors were encountered: