corehunt: init at 4.2.0
This commit is contained in:
parent
5efc01ff8f
commit
3a284fbde0
2 changed files with 33 additions and 0 deletions
31
pkgs/applications/misc/corehunt/default.nix
Normal file
31
pkgs/applications/misc/corehunt/default.nix
Normal file
|
@ -0,0 +1,31 @@
|
|||
{ mkDerivation, lib, fetchFromGitLab, qtbase, libcprime, cmake, ninja }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "corehunt";
|
||||
version = "4.2.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "cubocore/coreapps";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-KnIqLI8MtLirFycW2YNHAjS7EDfU3dpqb6vVq9Tl6Ow=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
ninja
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
libcprime
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A file finder utility from the C Suite";
|
||||
homepage = "https://gitlab.com/cubocore/coreapps/corehunt";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ dan4ik605743 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -3892,6 +3892,8 @@ in
|
|||
|
||||
c14 = callPackage ../applications/networking/c14 { };
|
||||
|
||||
corehunt = libsForQt5.callPackage ../applications/misc/corehunt { };
|
||||
|
||||
certstrap = callPackage ../tools/security/certstrap { };
|
||||
|
||||
cfssl = callPackage ../tools/security/cfssl { };
|
||||
|
|
Loading…
Reference in a new issue