julia-top-n: fix self-inclusive src
This commit is contained in:
parent
e98ea95710
commit
e4556a5877
@ -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 = [
|
||||
|
Loading…
Reference in New Issue
Block a user