Merge pull request #320580 from pyrox0/julia-top-n-fix-src
julia-top-n: fix self-inclusive src
This commit is contained in:
@@ -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 = [
|
||||
|
||||
Reference in New Issue
Block a user