cyan: init at 1.2.4
This commit is contained in:
parent
034175e4be
commit
5cf499310f
2 changed files with 44 additions and 0 deletions
42
pkgs/applications/graphics/cyan/default.nix
Normal file
42
pkgs/applications/graphics/cyan/default.nix
Normal file
|
@ -0,0 +1,42 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, qt5
|
||||
, cmake
|
||||
, pkg-config
|
||||
, imagemagick
|
||||
, nix-update-script
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cyan";
|
||||
version = "1.2.4";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rodlie";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-R5sj8AN7UT9OIeUPNrdTIUQvtEitXp1A32l/Z2qRS94=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
qt5.wrapQtAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [ imagemagick ];
|
||||
|
||||
passthru.updateScript = nix-update-script {
|
||||
attrPath = pname;
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Image viewer and converter, designed for prepress (print) work";
|
||||
homepage = "https://github.com/rodlie/cyan";
|
||||
mainProgram = "Cyan";
|
||||
license = licenses.cecill21;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ zendo ];
|
||||
};
|
||||
}
|
|
@ -26614,6 +26614,8 @@ with pkgs;
|
|||
inherit (darwin.apple_sdk.frameworks) Carbon;
|
||||
};
|
||||
|
||||
cyan = callPackage ../applications/graphics/cyan {};
|
||||
|
||||
cyanrip = callPackage ../applications/audio/cyanrip { };
|
||||
|
||||
centerim = callPackage ../applications/networking/instant-messengers/centerim { };
|
||||
|
|
Loading…
Reference in a new issue