julia-top-n: fix self-inclusive src

This commit is contained in:
Pyrox 2024-06-17 13:26:17 -04:00
parent e98ea95710
commit e4556a5877
No known key found for this signature in database
GPG Key ID: 8CDF3F7CAA53A0F5

View File

@ -4,7 +4,16 @@
mkDerivation {
pname = "julia-top-n";
version = "0.1.0.0";
src = ./.;
src = lib.fileset.toSource {
root = ./.;
fileset = lib.fileset.unions [
./app
./julia-top-n.cabal
./package.yaml
./stack.yaml
./stack.yaml.lock
];
};
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [