coreshot: init at 4.2.0
This commit is contained in:
parent
407ef1dc6f
commit
ea34e42b65
2 changed files with 34 additions and 0 deletions
32
pkgs/tools/misc/coreshot/default.nix
Normal file
32
pkgs/tools/misc/coreshot/default.nix
Normal file
|
@ -0,0 +1,32 @@
|
|||
{ mkDerivation, lib, fetchFromGitLab, qtbase, qtx11extras, libcprime, cmake, ninja }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "coreshot";
|
||||
version = "4.2.0";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "cubocore/coreapps";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-HKgGeuM3CKGXwnFwSw6a0AB0klZKY5YS9C4q2UT6TN8=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
ninja
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase
|
||||
qtx11extras
|
||||
libcprime
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "A screen capture utility from the C Suite";
|
||||
homepage = "https://gitlab.com/cubocore/coreapps/coreshot";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ dan4ik605743 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -3910,6 +3910,8 @@ in
|
|||
|
||||
coregarage = libsForQt5.callPackage ../applications/misc/coregarage { };
|
||||
|
||||
coreshot = libsForQt5.callPackage ../tools/misc/coreshot { };
|
||||
|
||||
c14 = callPackage ../applications/networking/c14 { };
|
||||
|
||||
corehunt = libsForQt5.callPackage ../applications/misc/corehunt { };
|
||||
|
|
Loading…
Reference in a new issue