nixpkgs/pkgs/tools/text/dos2unix/default.nix

27 lines
676 B
Nix
Raw Normal View History

{stdenv, fetchurl, perl, gettext }:
2015-04-06 07:04:10 +01:00
stdenv.mkDerivation rec {
2017-03-01 14:29:46 +00:00
name = "dos2unix-${version}";
version = "7.3.4";
src = fetchurl {
2015-04-06 07:04:10 +01:00
url = "http://waterlan.home.xs4all.nl/dos2unix/${name}.tar.gz";
2017-03-01 14:29:46 +00:00
sha256 = "1i9hbxn0br7xa18z4bjpkdv7mrzmbfxhm44mzpd07yd2qnxsgkcc";
};
configurePhase = ''
2017-03-01 14:29:46 +00:00
substituteInPlace Makefile \
--replace /usr $out
'';
buildInputs = [ perl gettext ];
2017-03-01 14:29:46 +00:00
meta = with stdenv.lib; {
homepage = http://waterlan.home.xs4all.nl/dos2unix.html;
description = "Tools to transform text files from dos to unix formats and vicervesa";
2017-03-01 14:29:46 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [viric ndowens ];
};
}