waylyrics: 0.3.16 -> 0.3.20 (#364626)
[NixPkgs.git] / pkgs / applications / misc / cubocore-packages / corehunt / default.nix
blob61d585e347fe9e848441513dd9ac2a64bddbe510
2   mkDerivation,
3   lib,
4   fetchFromGitLab,
5   qtbase,
6   cmake,
7   ninja,
8   libcprime,
9   libcsys,
12 mkDerivation rec {
13   pname = "corehunt";
14   version = "4.5.0";
16   src = fetchFromGitLab {
17     owner = "cubocore/coreapps";
18     repo = pname;
19     rev = "v${version}";
20     hash = "sha256-Xir1RQG7AlO166lZq1TJssiWoSixY6EfLEjxek+9ifo=";
21   };
23   nativeBuildInputs = [
24     cmake
25     ninja
26   ];
28   buildInputs = [
29     qtbase
30     libcprime
31     libcsys
32   ];
34   meta = with lib; {
35     description = "File finder utility from the C Suite";
36     mainProgram = "corehunt";
37     homepage = "https://gitlab.com/cubocore/coreapps/corehunt";
38     license = licenses.gpl3Only;
39     maintainers = with maintainers; [ dan4ik605743 ];
40     platforms = platforms.linux;
41   };