0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 21:50:33 +03:00

Revert "tests.haskell.cabalSdist.localFromCabalSdist: prevent unnecessary rebuilds"

This reverts commit 81c06bc609.

Reason for revert: This change breaks the
`tests.haskell.cabalSdist.assumptionLocalHasDirectReference` test which
relies on checking for the test source store path in the resulting
derivation files. 81c06bc609 did not
account for this in the change (though it should be possible).
This commit is contained in:
sternenseemann 2024-06-20 16:04:52 +02:00
parent d6ebba3ab8
commit b1acf7bab9

View file

@ -3,14 +3,7 @@
mkDerivation {
pname = "local";
version = "0.1.0.0";
src = lib.fileset.toSource {
root = ./.;
fileset = lib.fileset.unions [
./app
./CHANGELOG.md
./local.cabal
];
};
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base ];