nixpkgs/pkgs/tools/misc/moreutils/default.nix

31 lines
1.0 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, libxml2, libxslt, docbook-xsl, docbook_xml_dtd_44, perl, IPCRun, TimeDate, TimeDuration, makeWrapper }:
2014-12-14 11:49:07 +00:00
with stdenv.lib;
stdenv.mkDerivation rec {
name = "moreutils-${version}";
version = "0.57";
2014-12-14 11:49:07 +00:00
src = fetchurl {
url = "http://ftp.de.debian.org/debian/pool/main/m/moreutils/moreutils_${version}.orig.tar.gz";
sha256 = "078dpkwwwrv8hxnylbc901kib2d1rr3hsja37j6dlpjfcfq58z9s";
2014-12-14 11:49:07 +00:00
};
preBuild = ''
substituteInPlace Makefile --replace /usr/share/xml/docbook/stylesheet/docbook-xsl ${docbook-xsl}/xml/xsl/docbook
'';
buildInputs = [ libxml2 libxslt docbook-xsl docbook_xml_dtd_44 makeWrapper ];
2014-12-14 11:49:07 +00:00
propagatedBuildInputs = [ perl IPCRun TimeDate TimeDuration ];
installFlags = "PREFIX=$(out)";
postInstall = "wrapProgram $out/bin/chronic --prefix PERL5LIB : $PERL5LIB";
meta = {
2015-04-28 09:54:58 +01:00
description = "Growing collection of the unix tools that nobody thought to write long ago when unix was young";
2014-12-14 11:49:07 +00:00
homepage = https://joeyh.name/code/moreutils/;
maintainers = with maintainers; [ koral ];
};
}