summary refs log tree commit diff
path: root/pkgs/applications/graphics/exrtools
diff options
context:
space:
mode:
authorRyan Mulligan <ryan@ryantm.com>2018-05-28 05:59:57 -0700
committerRyan Mulligan <ryan@ryantm.com>2018-05-28 05:59:57 -0700
commitaf9d10a91b5ef0518ee12b220470735076974210 (patch)
treeef7ede43a31b0b5998799f33dc8f0e8fdf254db3 /pkgs/applications/graphics/exrtools
parentf0d6411c22d91723fef3f935adf35c7884a4dc76 (diff)
downloadnixpkgs-af9d10a91b5ef0518ee12b220470735076974210.tar
nixpkgs-af9d10a91b5ef0518ee12b220470735076974210.tar.gz
nixpkgs-af9d10a91b5ef0518ee12b220470735076974210.tar.bz2
nixpkgs-af9d10a91b5ef0518ee12b220470735076974210.tar.lz
nixpkgs-af9d10a91b5ef0518ee12b220470735076974210.tar.xz
nixpkgs-af9d10a91b5ef0518ee12b220470735076974210.tar.zst
nixpkgs-af9d10a91b5ef0518ee12b220470735076974210.zip
treewide: fix derivation names
Diffstat (limited to 'pkgs/applications/graphics/exrtools')
-rw-r--r--pkgs/applications/graphics/exrtools/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/graphics/exrtools/default.nix b/pkgs/applications/graphics/exrtools/default.nix
index 097062a8258..7980d09fed1 100644
--- a/pkgs/applications/graphics/exrtools/default.nix
+++ b/pkgs/applications/graphics/exrtools/default.nix
@@ -1,11 +1,11 @@
 { stdenv, fetchurl, pkgconfig, openexr, libpng12, libjpeg }:
 
 stdenv.mkDerivation rec {
-  name = "exrtools";
+  name = "exrtools-${version}";
   version = "0.4";
 
   src = fetchurl {
-    url =  "http://scanline.ca/exrtools/${name}-${version}.tar.gz";
+    url =  "http://scanline.ca/exrtools/${name}.tar.gz";
     sha256 = "0jpkskqs1yjiighab4s91jy0c0qxcscwadfn94xy2mm2bx2qwp4z";
   };