mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
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.
This commit is contained in:
parent
f64a24da5c
commit
72d7e4048c
|
@ -1,20 +1,20 @@
|
|||
{ stdenv, fetchurl, libxml2, libxslt, docbook-xsl, perl, IPCRun, TimeDate, TimeDuration, makeWrapper }:
|
||||
{ stdenv, fetchurl, libxml2, libxslt, docbook-xsl, docbook_xml_dtd_44, perl, IPCRun, TimeDate, TimeDuration, makeWrapper }:
|
||||
|
||||
with stdenv.lib;
|
||||
stdenv.mkDerivation rec {
|
||||
name = "moreutils-${version}";
|
||||
version = "0.55";
|
||||
version = "0.57";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_${version}.orig.tar.gz";
|
||||
sha256 = "1dcah2jx8dbznn8966xl7sf1jrld2qfh6l6xcmx9dsnf8p8mr7fs";
|
||||
sha256 = "078dpkwwwrv8hxnylbc901kib2d1rr3hsja37j6dlpjfcfq58z9s";
|
||||
};
|
||||
|
||||
preBuild = ''
|
||||
substituteInPlace Makefile --replace /usr/share/xml/docbook/stylesheet/docbook-xsl ${docbook-xsl}/xml/xsl/docbook
|
||||
'';
|
||||
|
||||
buildInputs = [ libxml2 libxslt docbook-xsl makeWrapper ];
|
||||
buildInputs = [ libxml2 libxslt docbook-xsl docbook_xml_dtd_44 makeWrapper ];
|
||||
|
||||
propagatedBuildInputs = [ perl IPCRun TimeDate TimeDuration ];
|
||||
|
||||
|
|
Loading…
Reference in a new issue