2019-11-28 13:33:15 +00:00
|
|
|
{ stdenv
|
|
|
|
, fetchFromGitHub
|
|
|
|
, gtk3
|
|
|
|
, intltool
|
|
|
|
, json_c
|
|
|
|
, lcms2
|
|
|
|
, libpng
|
|
|
|
, librsvg
|
|
|
|
, gobject-introspection
|
2019-01-27 09:25:23 +00:00
|
|
|
, libmypaint
|
|
|
|
, mypaint-brushes
|
2019-11-28 13:33:15 +00:00
|
|
|
, gdk-pixbuf
|
|
|
|
, pkgconfig
|
2019-01-27 09:25:23 +00:00
|
|
|
, python3
|
2019-11-28 13:33:15 +00:00
|
|
|
, swig
|
|
|
|
, wrapGAppsHook
|
|
|
|
}:
|
2013-03-06 22:08:30 +00:00
|
|
|
|
2016-09-26 08:45:33 +01:00
|
|
|
let
|
2019-01-27 09:25:23 +00:00
|
|
|
inherit (python3.pkgs) pycairo pygobject3 numpy buildPythonApplication;
|
|
|
|
in buildPythonApplication rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "mypaint";
|
2019-01-27 09:25:23 +00:00
|
|
|
version = "2.0.0";
|
2013-03-06 22:08:30 +00:00
|
|
|
|
2017-07-03 20:21:50 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "mypaint";
|
|
|
|
repo = "mypaint";
|
2019-01-27 09:25:23 +00:00
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "180kyilhf81ndhwl1hlvy82gh6hxpcvka2d1nkghbpgy431rls6r";
|
2017-07-03 20:21:50 +01:00
|
|
|
fetchSubmodules = true;
|
2013-03-06 22:08:30 +00:00
|
|
|
};
|
|
|
|
|
2018-06-06 11:13:15 +01:00
|
|
|
nativeBuildInputs = [
|
2019-11-28 13:33:15 +00:00
|
|
|
intltool
|
|
|
|
pkgconfig
|
|
|
|
swig
|
|
|
|
wrapGAppsHook
|
2018-12-02 11:41:15 +00:00
|
|
|
gobject-introspection # for setup hook
|
2018-06-06 11:13:15 +01:00
|
|
|
];
|
|
|
|
buildInputs = [
|
2019-11-28 13:33:15 +00:00
|
|
|
gtk3
|
|
|
|
gdk-pixbuf
|
2019-01-27 09:25:23 +00:00
|
|
|
libmypaint
|
|
|
|
mypaint-brushes
|
2019-11-28 13:33:15 +00:00
|
|
|
json_c
|
|
|
|
lcms2
|
|
|
|
libpng
|
|
|
|
librsvg
|
|
|
|
pycairo
|
|
|
|
pygobject3
|
2018-06-06 11:13:15 +01:00
|
|
|
];
|
2017-07-03 20:21:50 +01:00
|
|
|
|
2019-11-28 13:33:15 +00:00
|
|
|
propagatedBuildInputs = [
|
|
|
|
numpy
|
2019-01-27 09:25:23 +00:00
|
|
|
pycairo
|
|
|
|
pygobject3
|
2019-11-28 13:33:15 +00:00
|
|
|
];
|
2013-03-06 22:08:30 +00:00
|
|
|
|
2019-01-27 09:25:23 +00:00
|
|
|
checkInputs = [
|
|
|
|
gtk3
|
|
|
|
];
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
runHook preBuild
|
|
|
|
|
|
|
|
${python3.interpreter} setup.py build
|
|
|
|
|
|
|
|
runHook postBuild
|
2017-07-03 20:21:50 +01:00
|
|
|
'';
|
|
|
|
|
2019-01-27 09:25:23 +00: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
|
2013-03-06 22:08:30 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A graphics application for digital painters";
|
2019-11-28 13:33:15 +00:00
|
|
|
homepage = "http://mypaint.org/";
|
2013-03-06 22:08:30 +00:00
|
|
|
license = licenses.gpl2Plus;
|
|
|
|
platforms = platforms.linux;
|
2017-07-03 20:21:50 +01:00
|
|
|
maintainers = with maintainers; [ goibhniu jtojnar ];
|
2013-03-06 22:08:30 +00:00
|
|
|
};
|
|
|
|
}
|