summary refs log tree commit diff
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2020-11-11 00:16:39 +0100
committerJan Tojnar <jtojnar@gmail.com>2020-11-11 00:16:39 +0100
commitf4c513125dbd0c235697771621bc560f5e90bb64 (patch)
treec974c93eab24475b5035124a6951863c6c88b15b /pkgs/applications/graphics
parenta84a2de0aece7e1a4ee6a95567100426745048dd (diff)
downloadnixpkgs-f4c513125dbd0c235697771621bc560f5e90bb64.tar
nixpkgs-f4c513125dbd0c235697771621bc560f5e90bb64.tar.gz
nixpkgs-f4c513125dbd0c235697771621bc560f5e90bb64.tar.bz2
nixpkgs-f4c513125dbd0c235697771621bc560f5e90bb64.tar.lz
nixpkgs-f4c513125dbd0c235697771621bc560f5e90bb64.tar.xz
nixpkgs-f4c513125dbd0c235697771621bc560f5e90bb64.tar.zst
nixpkgs-f4c513125dbd0c235697771621bc560f5e90bb64.zip
gimpPlugins.lqrPlugin: 0.7.1 → 0.7.2
https://github.com/carlobaldassi/gimp-lqr-plugin/compare/v0.7.1...v0.7.2

Also switch to GitHub upstream and use installPhase from generic builder (thanks to the pkg-config variables).
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/gimp/plugins/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/applications/graphics/gimp/plugins/default.nix b/pkgs/applications/graphics/gimp/plugins/default.nix
index dae498d99a0..6a492580f7d 100644
--- a/pkgs/applications/graphics/gimp/plugins/default.nix
+++ b/pkgs/applications/graphics/gimp/plugins/default.nix
@@ -138,14 +138,14 @@ stdenv.lib.makeScope pkgs.newScope (self: with self; {
        Layer/Liquid Rescale
     */
     pname = "lqr-plugin";
-    version = "0.7.1";
+    version = "0.7.2";
     buildInputs = with pkgs; [ liblqr1 ];
-    src = fetchurl {
-      url = "https://github.com/pixlsus/registry.gimp.org_static/raw/master/registry.gimp.org/files/gimp-lqr-plugin-${version}.tar.bz2";
-      sha256 = "sha256-YpgYPjHZkueJWS51QGmugXavGS+1x4o20St31qoRng4=";
+    src = fetchFromGitHub {
+      owner = "carlobaldassi";
+      repo = "gimp-lqr-plugin";
+      rev = "v${version}";
+      sha256 = "81ajdZ2zQi/THxnBlSeT36tVTEzrS1YqLGpHMhFTKAo=";
     };
-    #postInstall = ''mkdir -p $out/nix-support; echo "${liblqr1}" > "$out/nix-support/propagated-user-env-packages"'';
-    installPhase = "installPlugins src/gimp-lqr-plugin";
   };
 
   gmic = pkgs.gmic-qt.override {