biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / misc / cubocore-packages / coreshot / default.nix
blob3603becfc1e32b270cb48ffb2afaf0a3aa177996
1 { mkDerivation, lib, fetchFromGitLab, qtbase, qtx11extras, cmake, ninja, libcprime, libcsys }:
3 mkDerivation rec {
4   pname = "coreshot";
5   version = "4.5.0";
7   src = fetchFromGitLab {
8     owner = "cubocore/coreapps";
9     repo = pname;
10     rev = "v${version}";
11     hash = "sha256-XPECvwZkJIoN/r5oFWJpgl/WASpybgLjCK/F0XVMHyU=";
12   };
14   nativeBuildInputs = [
15     cmake
16     ninja
17   ];
19   buildInputs = [
20     qtbase
21     qtx11extras
22     libcprime
23     libcsys
24   ];
26   meta = with lib; {
27     description = "A screen capture utility from the C Suite";
28     mainProgram = "coreshot";
29     homepage = "https://gitlab.com/cubocore/coreapps/coreshot";
30     license = licenses.gpl3Plus;
31     maintainers = with maintainers; [ dan4ik605743 ];
32     platforms = platforms.linux;
33   };