mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
32 lines
684 B
Nix
32 lines
684 B
Nix
{ 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;
|
|
};
|
|
}
|