moreutils: 0.59 -> 0.61

This commit is contained in:
Pascal Wittmann 2017-05-28 20:00:07 +02:00
parent 157b5bd1f0
commit aee5fa2f48
No known key found for this signature in database
GPG Key ID: C899ACE7E2322852
1 changed files with 7 additions and 6 deletions

View File

@ -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; with stdenv.lib;
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "moreutils-${version}"; name = "moreutils-${version}";
version = "0.59"; version = "0.61";
src = fetchurl { src = fetchgit {
url = "http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_${version}.orig.tar.gz"; url = "git://git.joeyh.name/moreutils";
sha256 = "1d6ik3j4lwp90vb93p7yv60k6vk2chz448d1z9xrmxvv371i33m4"; rev = "refs/tags/${version}";
sha256 = "1qvwlq0a2zs7qkjqc9c842979axkjfdr7nic1gsm4zc6jd72y7pr";
}; };
preBuild = '' preBuild = ''
@ -25,7 +26,7 @@ stdenv.mkDerivation rec {
meta = { meta = {
description = "Growing collection of the unix tools that nobody thought to write long ago when unix was young"; description = "Growing collection of the unix tools that nobody thought to write long ago when unix was young";
homepage = https://joeyh.name/code/moreutils/; homepage = https://joeyh.name/code/moreutils/;
maintainers = with maintainers; [ koral ]; maintainers = with maintainers; [ koral pSub ];
platforms = platforms.all; platforms = platforms.all;
}; };
} }