Merge pull request #80715 from jtojnar/gimp-2.10.16
gimp: 2.10.14 → 2.10.16
This commit is contained in:
commit
0c4755b420
@ -50,13 +50,13 @@ let
|
|||||||
inherit (python2Packages) pygtk wrapPython python;
|
inherit (python2Packages) pygtk wrapPython python;
|
||||||
in stdenv.mkDerivation rec {
|
in stdenv.mkDerivation rec {
|
||||||
pname = "gimp";
|
pname = "gimp";
|
||||||
version = "2.10.14";
|
version = "2.10.16";
|
||||||
|
|
||||||
outputs = [ "out" "dev" ];
|
outputs = [ "out" "dev" ];
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://download.gimp.org/pub/gimp/v${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
|
url = "http://download.gimp.org/pub/gimp/v${lib.versions.majorMinor version}/${pname}-${version}.tar.bz2";
|
||||||
sha256 = "0m6wdnfvsxyhimdd4v3351g4r1fklllnbipbwcfym3h7q88hz6yz";
|
sha256 = "1sybf1yilw272lr8qbyx3zbvysf5rc89gk80gd4aj4xr6jazxyfb";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
@ -155,6 +155,7 @@ in stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
configureFlags = [
|
configureFlags = [
|
||||||
"--without-webkit" # old version is required
|
"--without-webkit" # old version is required
|
||||||
|
"--disable-check-update"
|
||||||
"--with-bug-report-url=https://github.com/NixOS/nixpkgs/issues/new"
|
"--with-bug-report-url=https://github.com/NixOS/nixpkgs/issues/new"
|
||||||
"--with-icc-directory=/run/current-system/sw/share/color/icc"
|
"--with-icc-directory=/run/current-system/sw/share/color/icc"
|
||||||
# fix libdir in pc files (${exec_prefix} needs to be passed verbatim)
|
# fix libdir in pc files (${exec_prefix} needs to be passed verbatim)
|
||||||
|
@ -1,13 +1,15 @@
|
|||||||
diff --git a/app/gimp-version.c b/app/gimp-version.c
|
diff --git a/app/gimp-version.c b/app/gimp-version.c
|
||||||
index 12605c6..a9083da 100644
|
index 0f7bfb9bf9..1679624b8e 100644
|
||||||
--- a/app/gimp-version.c
|
--- a/app/gimp-version.c
|
||||||
+++ b/app/gimp-version.c
|
+++ b/app/gimp-version.c
|
||||||
@@ -203,7 +203,7 @@ gimp_version (gboolean be_verbose,
|
@@ -228,9 +228,9 @@
|
||||||
lib_versions = gimp_library_versions (localized);
|
"# Libraries #\n%s",
|
||||||
verbose_info = g_strdup_printf ("git-describe: %s\n"
|
GIMP_GIT_VERSION,
|
||||||
"C compiler:\n%s\n%s",
|
GIMP_BUILD_ID,
|
||||||
- GIMP_GIT_VERSION, CC_VERSION,
|
gimp_version_get_revision (),
|
||||||
+ GIMP_GIT_VERSION, "@cc_version@",
|
GIMP_BUILD_PLATFORM,
|
||||||
|
- CC_VERSION,
|
||||||
|
+ "@cc_version@",
|
||||||
lib_versions);
|
lib_versions);
|
||||||
g_free (lib_versions);
|
g_free (lib_versions);
|
||||||
|
|
||||||
|
@ -18,6 +18,7 @@
|
|||||||
, netsurf
|
, netsurf
|
||||||
, pango
|
, pango
|
||||||
, poly2tri-c
|
, poly2tri-c
|
||||||
|
, poppler
|
||||||
, bzip2
|
, bzip2
|
||||||
, json-glib
|
, json-glib
|
||||||
, gettext
|
, gettext
|
||||||
@ -34,14 +35,14 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "gegl";
|
pname = "gegl";
|
||||||
version = "0.4.20";
|
version = "0.4.22";
|
||||||
|
|
||||||
outputs = [ "out" "dev" "devdoc" ];
|
outputs = [ "out" "dev" "devdoc" ];
|
||||||
outputBin = "dev";
|
outputBin = "dev";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "https://download.gimp.org/pub/gegl/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
url = "https://download.gimp.org/pub/gegl/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
sha256 = "1zrxnxlhn0jmshg4n2m2xlgi886w059ynkiiihm7rpi05fs8pg93";
|
sha256 = "0q9cckf90fb82qc5d496fjz459f1xw4j4p3rff1f57yivx0yr20q";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
@ -71,6 +72,7 @@ stdenv.mkDerivation rec {
|
|||||||
netsurf.libnsgif
|
netsurf.libnsgif
|
||||||
pango
|
pango
|
||||||
poly2tri-c
|
poly2tri-c
|
||||||
|
poppler
|
||||||
bzip2
|
bzip2
|
||||||
libraw
|
libraw
|
||||||
libwebp
|
libwebp
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
{ stdenv
|
{ stdenv
|
||||||
, fetchpatch
|
|
||||||
, autoconf
|
, autoconf
|
||||||
, automake
|
, automake
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
@ -8,23 +7,15 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "mypaint-brushes";
|
pname = "mypaint-brushes";
|
||||||
version = "1.3.0";
|
version = "1.3.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "mypaint";
|
owner = "mypaint";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1iz89z6v2mp8j1lrf942k561s8311i3s34ap36wh4rybb2lq15m0";
|
sha256 = "1c95l1vfz7sbrdlzrbz7h1p6s1k113kyjfd9wfnxlm0p6562cz3j";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
|
||||||
# build with automake 1.16
|
|
||||||
(fetchpatch {
|
|
||||||
url = https://github.com/Jehan/mypaint-brushes/commit/1e9109dde3bffd416ed351c3f30ecd6ffd0ca2cd.patch;
|
|
||||||
sha256 = "0mi8rwbirl0ib22f2hz7kdlgi4hw8s3ab29b003dsshdyzn5iha9";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
autoconf
|
autoconf
|
||||||
automake
|
automake
|
||||||
|
Loading…
x
Reference in New Issue
Block a user