libmypaint: 1.3.0 → 1.4.0

http://mypaint.org/blog/2019/09/01/libmypaint-1.4.0-release/
This commit is contained in:
Jan Tojnar 2019-09-02 11:59:27 +02:00
parent a41932865f
commit 30853a61f5
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -2,39 +2,34 @@
, autoconf , autoconf
, automake , automake
, fetchFromGitHub , fetchFromGitHub
, fetchpatch
, glib , glib
, intltool , intltool
, json_c , json_c
, libtool , libtool
, pkgconfig , pkgconfig
, python2
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "libmypaint"; pname = "libmypaint";
version = "1.3.0"; version = "1.4.0";
outputs = [ "out" "dev" ];
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "mypaint"; owner = "mypaint";
repo = "libmypaint"; repo = "libmypaint";
rev = "v${version}"; rev = "v${version}";
sha256 = "0b7aynr6ggigwhjkfzi8x3dwz15blj4grkg9hysbgjh6lvzpy9jc"; sha256 = "1ynm2g2wdb9zsymncndlgs6gpcbsa122n52d11161jrj5nrdliaq";
}; };
patches = [
# build with automake 1.16
(fetchpatch {
url = https://github.com/mypaint/libmypaint/commit/40d9077a80be13942476f164bddfabe842ab2a45.patch;
sha256 = "1dclh7apgvr2bvzy9z3rgas3hk9pf2hpf5h52q94kmx8s4a47qpi";
})
];
nativeBuildInputs = [ nativeBuildInputs = [
autoconf autoconf
automake automake
intltool intltool
libtool libtool
pkgconfig pkgconfig
python2
]; ];
buildInputs = [ buildInputs = [