Commit b1acf7ba authored by sternenseemann's avatar sternenseemann
Browse files

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

This reverts commit 81c06bc6.

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. 81c06bc6 did not
account for this in the change (though it should be possible).
parent d6ebba3a
Loading
Loading
Loading
Loading
+1 −8
Original line number Diff line number Diff line
@@ -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 ];