anvil-editor: init at 0.4
[NixPkgs.git] / pkgs / applications / misc / cubocore-packages / corehunt / default.nix
blob1c4d643488eb5937fa27a287d91f578ab3dc4cc6
1 { mkDerivation, lib, fetchFromGitLab, qtbase, cmake, ninja, libcprime, libcsys }:
3 mkDerivation rec {
4   pname = "corehunt";
5   version = "4.5.0";
7   src = fetchFromGitLab {
8     owner = "cubocore/coreapps";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-Xir1RQG7AlO166lZq1TJssiWoSixY6EfLEjxek+9ifo=";
12   };
14   nativeBuildInputs = [
15     cmake
16     ninja
17   ];
19   buildInputs = [
20     qtbase
21     libcprime
22     libcsys
23   ];
25   meta = with lib; {
26     description = "File finder utility from the C Suite";
27     mainProgram = "corehunt";
28     homepage = "https://gitlab.com/cubocore/coreapps/corehunt";
29     license = licenses.gpl3Only;
30     maintainers = with maintainers; [ dan4ik605743 ];
31     platforms = platforms.linux;
32   };