summary refs log tree commit diff
path: root/pkgs/applications
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-04-12 22:02:37 +0200
committerJan Tojnar <jtojnar@gmail.com>2018-04-29 08:39:06 +0200
commit882682827a0c23537951d3ad0241df11b3dbb36e (patch)
tree9ea1b5ddc144f45dd489973d81af906df9e3ee5c /pkgs/applications
parentb0d3ed348474f02dd79d63149706be66231dff55 (diff)
downloadnixlib-882682827a0c23537951d3ad0241df11b3dbb36e.tar
nixlib-882682827a0c23537951d3ad0241df11b3dbb36e.tar.gz
nixlib-882682827a0c23537951d3ad0241df11b3dbb36e.tar.bz2
nixlib-882682827a0c23537951d3ad0241df11b3dbb36e.tar.lz
nixlib-882682827a0c23537951d3ad0241df11b3dbb36e.tar.xz
nixlib-882682827a0c23537951d3ad0241df11b3dbb36e.tar.zst
nixlib-882682827a0c23537951d3ad0241df11b3dbb36e.zip
gimpPlugins.lqrPlugin: use liblqr1 from pkgs
Diffstat (limited to 'pkgs/applications')
-rw-r--r--pkgs/applications/graphics/gimp/plugins/default.nix13
1 files changed, 2 insertions, 11 deletions
diff --git a/pkgs/applications/graphics/gimp/plugins/default.nix b/pkgs/applications/graphics/gimp/plugins/default.nix
index a19a5487b425..444fb37ae338 100644
--- a/pkgs/applications/graphics/gimp/plugins/default.nix
+++ b/pkgs/applications/graphics/gimp/plugins/default.nix
@@ -35,15 +35,6 @@ let
     installPhase = "installScripts ${src}";
   };
 
- libLQR = pluginDerivation {
-    name = "liblqr-1-0.4.1";
-    # required by lqrPlugin, you don't havet to install this lib explicitely
-    src = fetchurl {
-      url = http://registry.gimp.org/files/liblqr-1-0.4.1.tar.bz2;
-      sha256 = "02g90wag7xi5rjlmwq8h0qs666b1i2sa90s4303hmym40il33nlz";
-    };
-  };
-
 in
 rec {
   gap = pluginDerivation {
@@ -166,12 +157,12 @@ rec {
        Layer/Liquid Rescale
     */
     name = "lqr-plugin-0.6.1";
-    buildInputs = with pkgs; [ libLQR ];
+    buildInputs = with pkgs; [ liblqr1 ];
     src = fetchurl {
       url = http://registry.gimp.org/files/gimp-lqr-plugin-0.6.1.tar.bz2;
       sha256 = "00hklkpcimcbpjly4rjhfipaw096cpy768g9wixglwrsyqhil7l9";
     };
-    #postInstall = ''mkdir -p $out/nix-support; echo "${libLQR}" > "$out/nix-support/propagated-user-env-packages"'';
+    #postInstall = ''mkdir -p $out/nix-support; echo "${liblqr1}" > "$out/nix-support/propagated-user-env-packages"'';
     installPhase = "installPlugins src/gimp-lqr-plugin";
   };