biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / applications / graphics / cyan / default.nix
blob22fab6cc8d92694a3ea2fd410ca215cd83aae489
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , qt5
5 , cmake
6 , pkg-config
7 , imagemagick
8 , nix-update-script
9 }:
11 stdenv.mkDerivation rec {
12   pname = "cyan";
13   version = "1.2.4";
15   src = fetchFromGitHub {
16     owner = "rodlie";
17     repo = pname;
18     rev = version;
19     hash = "sha256-R5sj8AN7UT9OIeUPNrdTIUQvtEitXp1A32l/Z2qRS94=";
20   };
22   nativeBuildInputs = [
23     cmake
24     pkg-config
25     qt5.wrapQtAppsHook
26   ];
28   buildInputs = [ imagemagick ];
30   passthru.updateScript = nix-update-script { };
32   meta = with lib; {
33     description = "Image viewer and converter, designed for prepress (print) work";
34     homepage = "https://github.com/rodlie/cyan";
35     mainProgram = "Cyan";
36     license = licenses.cecill21;
37     platforms = platforms.linux;
38     maintainers = with maintainers; [ zendo ];
39   };