about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorPascal Wittmann <mail@pascal-wittmann.de>2017-05-28 20:00:07 +0200
committerPascal Wittmann <mail@pascal-wittmann.de>2017-05-28 20:00:07 +0200
commitaee5fa2f4817c04e2169010ec7c52f9210eaa89c (patch)
tree0e0de633a90aa37aacd897aa68b97b94f051f329 /pkgs/tools
parent157b5bd1f0ce284bc258c5442e98f56ff65829da (diff)
downloadnixlib-aee5fa2f4817c04e2169010ec7c52f9210eaa89c.tar
nixlib-aee5fa2f4817c04e2169010ec7c52f9210eaa89c.tar.gz
nixlib-aee5fa2f4817c04e2169010ec7c52f9210eaa89c.tar.bz2
nixlib-aee5fa2f4817c04e2169010ec7c52f9210eaa89c.tar.lz
nixlib-aee5fa2f4817c04e2169010ec7c52f9210eaa89c.tar.xz
nixlib-aee5fa2f4817c04e2169010ec7c52f9210eaa89c.tar.zst
nixlib-aee5fa2f4817c04e2169010ec7c52f9210eaa89c.zip
moreutils: 0.59 -> 0.61
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/moreutils/default.nix13
1 files changed, 7 insertions, 6 deletions
diff --git a/pkgs/tools/misc/moreutils/default.nix b/pkgs/tools/misc/moreutils/default.nix
index a232028976dc..51ac3249fed8 100644
--- a/pkgs/tools/misc/moreutils/default.nix
+++ b/pkgs/tools/misc/moreutils/default.nix
@@ -1,13 +1,14 @@
-{ stdenv, fetchurl, libxml2, libxslt, docbook-xsl, docbook_xml_dtd_44, perl, IPCRun, TimeDate, TimeDuration, makeWrapper }:
+{ stdenv, fetchgit, libxml2, libxslt, docbook-xsl, docbook_xml_dtd_44, perl, IPCRun, TimeDate, TimeDuration, makeWrapper }:
 
 with stdenv.lib;
 stdenv.mkDerivation rec {
   name = "moreutils-${version}";
-  version = "0.59";
+  version = "0.61";
 
-  src = fetchurl {
-    url = "http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_${version}.orig.tar.gz";
-    sha256 = "1d6ik3j4lwp90vb93p7yv60k6vk2chz448d1z9xrmxvv371i33m4";
+  src = fetchgit {
+    url = "git://git.joeyh.name/moreutils";
+    rev = "refs/tags/${version}";
+    sha256 = "1qvwlq0a2zs7qkjqc9c842979axkjfdr7nic1gsm4zc6jd72y7pr";
   };
 
   preBuild = ''
@@ -25,7 +26,7 @@ stdenv.mkDerivation rec {
   meta = {
     description = "Growing collection of the unix tools that nobody thought to write long ago when unix was young";
     homepage = https://joeyh.name/code/moreutils/;
-    maintainers = with maintainers; [ koral ];
+    maintainers = with maintainers; [ koral pSub ];
     platforms = platforms.all;
   };
 }