lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

moreutils: 0.55 -> 0.57

(Implicitly fixes build, since 0.55 source has disappeared.)

Also add needed "docbook_xml_dtd_44" dependency for the new version.

+4 -4
+4 -4
pkgs/tools/misc/moreutils/default.nix
··· 1 - { stdenv, fetchurl, libxml2, libxslt, docbook-xsl, perl, IPCRun, TimeDate, TimeDuration, makeWrapper }: 1 + { stdenv, fetchurl, libxml2, libxslt, docbook-xsl, docbook_xml_dtd_44, perl, IPCRun, TimeDate, TimeDuration, makeWrapper }: 2 2 3 3 with stdenv.lib; 4 4 stdenv.mkDerivation rec { 5 5 name = "moreutils-${version}"; 6 - version = "0.55"; 6 + version = "0.57"; 7 7 8 8 src = fetchurl { 9 9 url = "http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_${version}.orig.tar.gz"; 10 - sha256 = "1dcah2jx8dbznn8966xl7sf1jrld2qfh6l6xcmx9dsnf8p8mr7fs"; 10 + sha256 = "078dpkwwwrv8hxnylbc901kib2d1rr3hsja37j6dlpjfcfq58z9s"; 11 11 }; 12 12 13 13 preBuild = '' 14 14 substituteInPlace Makefile --replace /usr/share/xml/docbook/stylesheet/docbook-xsl ${docbook-xsl}/xml/xsl/docbook 15 15 ''; 16 16 17 - buildInputs = [ libxml2 libxslt docbook-xsl makeWrapper ]; 17 + buildInputs = [ libxml2 libxslt docbook-xsl docbook_xml_dtd_44 makeWrapper ]; 18 18 19 19 propagatedBuildInputs = [ perl IPCRun TimeDate TimeDuration ]; 20 20