summaryrefslogtreecommitdiffstats
path: root/package.nix
blob: dfc014e2059159369d10f3b93b2ad85afaad239e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, qtbase, qttranslations, qtmultimedia, lmdb, cmake }:
stdenv.mkDerivation rec {
  version = "0.2.0";
  name = "nheko-${version}";
  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 qtmultimedia lmdb ];
  installPhase = "install -Dm755 nheko $out/bin/nheko";
}