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

23 lines
779 B
Nix
Raw Normal View History

{stdenv, fetchurl, perl, gettext }:
2015-04-06 06:04:10 +00:00
stdenv.mkDerivation rec {
pname = "dos2unix";
version = "7.4.1";
2017-03-01 14:29:46 +00:00
src = fetchurl {
url = "https://waterlan.home.xs4all.nl/dos2unix/${pname}-${version}.tar.gz";
sha256 = "08w6yywzirsxq8bh87jycvvw922ybhc2l426j2iqzliyn1h8mm8w";
};
2018-10-12 11:02:37 +00:00
nativeBuildInputs = [ perl gettext ];
makeFlags = [ "prefix=${placeholder "out"}" ];
2017-03-01 14:29:46 +00:00
meta = with stdenv.lib; {
description = "Convert text files with DOS or Mac line breaks to Unix line breaks and vice versa";
homepage = "https://waterlan.home.xs4all.nl/dos2unix.html";
changelog = "https://sourceforge.net/p/dos2unix/dos2unix/ci/dos2unix-${version}/tree/dos2unix/NEWS.txt?format=raw";
2017-03-01 14:29:46 +00:00
license = licenses.bsd2;
maintainers = with maintainers; [ c0bw3b ndowens ];
};
}