aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/mypaint-brushes
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2019-01-27 10:12:49 +0100
committerJan Tojnar <jtojnar@gmail.com>2020-02-18 22:16:06 +0100
commiteeaad8d225d21ee2bc52743f9d40506846e077a1 (patch)
tree03be19ce137bf39bb633d3c12e8d3fe92714089a /pkgs/development/libraries/mypaint-brushes
parent1e0222cd1f685bb972ba65fa247146c8722c567b (diff)
mypaint-brushes: 1.3.0 → 2.0.2
Diffstat (limited to 'pkgs/development/libraries/mypaint-brushes')
-rw-r--r--pkgs/development/libraries/mypaint-brushes/1.0.nix43
-rw-r--r--pkgs/development/libraries/mypaint-brushes/default.nix13
2 files changed, 45 insertions, 11 deletions
diff --git a/pkgs/development/libraries/mypaint-brushes/1.0.nix b/pkgs/development/libraries/mypaint-brushes/1.0.nix
new file mode 100644
index 000000000000..115d818d9365
--- /dev/null
+++ b/pkgs/development/libraries/mypaint-brushes/1.0.nix
@@ -0,0 +1,43 @@
+{ stdenv
+, fetchpatch
+, autoconf
+, automake
+, fetchFromGitHub
+, pkgconfig
+}:
+
+stdenv.mkDerivation rec {
+ pname = "mypaint-brushes";
+ version = "1.3.0";
+
+ src = fetchFromGitHub {
+ owner = "mypaint";
+ repo = pname;
+ rev = "v${version}";
+ sha256 = "1iz89z6v2mp8j1lrf942k561s8311i3s34ap36wh4rybb2lq15m0";
+ };
+
+ patches = [
+ # build with automake 1.16
+ (fetchpatch {
+ url = https://github.com/Jehan/mypaint-brushes/commit/1e9109dde3bffd416ed351c3f30ecd6ffd0ca2cd.patch;
+ sha256 = "0mi8rwbirl0ib22f2hz7kdlgi4hw8s3ab29b003dsshdyzn5iha9";
+ })
+ ];
+
+ nativeBuildInputs = [
+ autoconf
+ automake
+ pkgconfig
+ ];
+
+ preConfigure = "./autogen.sh";
+
+ meta = with stdenv.lib; {
+ homepage = "http://mypaint.org/";
+ description = "Brushes used by MyPaint and other software using libmypaint.";
+ license = licenses.cc0;
+ maintainers = with maintainers; [ jtojnar ];
+ platforms = platforms.unix;
+ };
+}
diff --git a/pkgs/development/libraries/mypaint-brushes/default.nix b/pkgs/development/libraries/mypaint-brushes/default.nix
index 115d818d9365..20caf6e57752 100644
--- a/pkgs/development/libraries/mypaint-brushes/default.nix
+++ b/pkgs/development/libraries/mypaint-brushes/default.nix
@@ -1,5 +1,4 @@
{ stdenv
-, fetchpatch
, autoconf
, automake
, fetchFromGitHub
@@ -8,23 +7,15 @@
stdenv.mkDerivation rec {
pname = "mypaint-brushes";
- version = "1.3.0";
+ version = "2.0.2";
src = fetchFromGitHub {
owner = "mypaint";
repo = pname;
rev = "v${version}";
- sha256 = "1iz89z6v2mp8j1lrf942k561s8311i3s34ap36wh4rybb2lq15m0";
+ sha256 = "0kcqz13vzpy24dhmrx9hbs6s7hqb8y305vciznm15h277sabpmw9";
};
- patches = [
- # build with automake 1.16
- (fetchpatch {
- url = https://github.com/Jehan/mypaint-brushes/commit/1e9109dde3bffd416ed351c3f30ecd6ffd0ca2cd.patch;
- sha256 = "0mi8rwbirl0ib22f2hz7kdlgi4hw8s3ab29b003dsshdyzn5iha9";
- })
- ];
-
nativeBuildInputs = [
autoconf
automake