Nix: ignore earlier build results

This commit is contained in:
Jani Mustonen 2017-08-05 18:56:41 +03:00 committed by GitHub
parent 486676f248
commit 0777dba5e1
1 changed files with 6 additions and 1 deletions

View File

@ -2,7 +2,12 @@
stdenv.mkDerivation rec {
version = "0.1.0";
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 ];
buildInputs = [ qtbase qttranslations lmdb ];
installPhase = ''