nixpkgs/pkgs/applications/graphics/mypaint/default.nix

95 lines
1.5 KiB
Nix
Raw Normal View History

2019-11-28 16:33:15 +03:00
{ stdenv
, fetchFromGitHub
, gtk3
, intltool
, json_c
, lcms2
, libpng
, librsvg
, gobject-introspection
2019-01-27 12:25:23 +03:00
, libmypaint
, mypaint-brushes
2019-11-28 16:33:15 +03:00
, gdk-pixbuf
, pkgconfig
2019-01-27 12:25:23 +03:00
, python3
2019-11-28 16:33:15 +03:00
, swig
, wrapGAppsHook
}:
let
2019-01-27 12:25:23 +03:00
inherit (python3.pkgs) pycairo pygobject3 numpy buildPythonApplication;
in buildPythonApplication rec {
pname = "mypaint";
2019-01-27 12:25:23 +03:00
version = "2.0.0";
2017-07-03 22:21:50 +03:00
src = fetchFromGitHub {
owner = "mypaint";
repo = "mypaint";
2019-01-27 12:25:23 +03:00
rev = "v${version}";
sha256 = "180kyilhf81ndhwl1hlvy82gh6hxpcvka2d1nkghbpgy431rls6r";
2017-07-03 22:21:50 +03:00
fetchSubmodules = true;
};
nativeBuildInputs = [
2019-11-28 16:33:15 +03:00
intltool
pkgconfig
swig
wrapGAppsHook
gobject-introspection # for setup hook
];
buildInputs = [
2019-11-28 16:33:15 +03:00
gtk3
gdk-pixbuf
2019-01-27 12:25:23 +03:00
libmypaint
mypaint-brushes
2019-11-28 16:33:15 +03:00
json_c
lcms2
libpng
librsvg
pycairo
pygobject3
];
2017-07-03 22:21:50 +03:00
2019-11-28 16:33:15 +03:00
propagatedBuildInputs = [
numpy
2019-01-27 12:25:23 +03:00
pycairo
pygobject3
2019-11-28 16:33:15 +03:00
];
2019-01-27 12:25:23 +03:00
checkInputs = [
gtk3
];
buildPhase = ''
runHook preBuild
${python3.interpreter} setup.py build
runHook postBuild
2017-07-03 22:21:50 +03:00
'';
2019-01-27 12:25:23 +03:00
installPhase = ''
runHook preInstall
${python3.interpreter} setup.py managed_install --prefix=$out
runHook postInstall
'';
checkPhase = ''
runHook preCheck
HOME=$TEMPDIR ${python3.interpreter} setup.py test
runHook postCheck
'';
meta = with stdenv.lib; {
description = "A graphics application for digital painters";
2019-11-28 16:33:15 +03:00
homepage = "http://mypaint.org/";
license = licenses.gpl2Plus;
platforms = platforms.linux;
2017-07-03 22:21:50 +03:00
maintainers = with maintainers; [ goibhniu jtojnar ];
};
}