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