Newer
Older
{ stdenv, qtbase, qttranslations, qtmultimedia, lmdb, cmake }:
src = builtins.filterSource
(path: type:
let name = baseNameOf path;
in !((type == "directory" && (name == ".git" || name == "build")) ||
(type == "symlink" && name == "result") ))
./.;
buildInputs = [ qtbase qttranslations qtmultimedia lmdb ];
installPhase = "install -Dm755 nheko $out/bin/nheko";