Nix: ignore earlier build results
This commit is contained in:
parent
486676f248
commit
0777dba5e1
@ -2,7 +2,12 @@
|
|||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
version = "0.1.0";
|
version = "0.1.0";
|
||||||
name = "nheko-${version}";
|
name = "nheko-${version}";
|
||||||
src = ./.;
|
src = builtins.filterSource
|
||||||
|
(path: type:
|
||||||
|
let name = baseNameOf path;
|
||||||
|
in !((type == "directory" && (name == ".git" || name == "build")) ||
|
||||||
|
(type == "symlink" && name == "result") ))
|
||||||
|
./.;
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
buildInputs = [ qtbase qttranslations lmdb ];
|
buildInputs = [ qtbase qttranslations lmdb ];
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user