summary refs log tree commit diff
path: root/pkgs/tools/archivers/sharutils/4.6.3.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2009-11-18 09:39:59 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2009-11-18 09:39:59 +0000
commit7f5b839524cad9211699c68ea02d11c1758a800b (patch)
treeed963d727a8e719d2e1eae8ed31454d59ba2aba3 /pkgs/tools/archivers/sharutils/4.6.3.nix
parent52e9488541dc9e207d853ce2aa31d0e453c34767 (diff)
downloadnixpkgs-7f5b839524cad9211699c68ea02d11c1758a800b.tar
nixpkgs-7f5b839524cad9211699c68ea02d11c1758a800b.tar.gz
nixpkgs-7f5b839524cad9211699c68ea02d11c1758a800b.tar.bz2
nixpkgs-7f5b839524cad9211699c68ea02d11c1758a800b.tar.lz
nixpkgs-7f5b839524cad9211699c68ea02d11c1758a800b.tar.xz
nixpkgs-7f5b839524cad9211699c68ea02d11c1758a800b.tar.zst
nixpkgs-7f5b839524cad9211699c68ea02d11c1758a800b.zip
* Removed selectVersion. There's no good reason to write
  `selectVersion ./foo "bar"' instead of `import ./foo/bar.nix'.
* Replaced `with args' with formal function arguments in several
  packages.
* Renamed several files to `default.nix'.  As a general rule, version
  numbers should only be included in the filename when there is a
  reason to keep multiple versions of a package in Nixpkgs.
  Otherwise, it just makes it harder to update the package.

svn path=/nixpkgs/trunk/; revision=18403
Diffstat (limited to 'pkgs/tools/archivers/sharutils/4.6.3.nix')
-rw-r--r--pkgs/tools/archivers/sharutils/4.6.3.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/tools/archivers/sharutils/4.6.3.nix b/pkgs/tools/archivers/sharutils/4.6.3.nix
index 830c2a072b6..cd70550117a 100644
--- a/pkgs/tools/archivers/sharutils/4.6.3.nix
+++ b/pkgs/tools/archivers/sharutils/4.6.3.nix
@@ -1,9 +1,10 @@
-args: with args;
+{ stdenv, fetchurl }:
+
 stdenv.mkDerivation rec {
-  name = "sharutils-" + version;
+  name = "sharutils-4.6.3";
 
   src = fetchurl {
-    url = "mirror://gnu/sharutils/REL-${version}/${name}.tar.bz2";
+    url = "mirror://gnu/sharutils/REL-4.6.3/${name}.tar.bz2";
     sha256 = "1sirrzas8llcsd8gnh56pns39wa1f803vff1kmy5islfi1p9vqk8";
   };