2011-08-24 08:48:02 +01:00
|
|
|
{stdenv, fetchurl, perl, gettext }:
|
2010-01-13 21:09:55 +00:00
|
|
|
|
2015-04-06 07:04:10 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-03-01 14:29:46 +00:00
|
|
|
name = "dos2unix-${version}";
|
2018-01-04 08:34:44 +00:00
|
|
|
version = "7.4.0";
|
2017-03-01 14:29:46 +00:00
|
|
|
|
2010-01-13 21:09:55 +00:00
|
|
|
src = fetchurl {
|
2018-01-04 08:34:44 +00:00
|
|
|
url = "https://waterlan.home.xs4all.nl/dos2unix/${name}.tar.gz";
|
|
|
|
sha256 = "12h4c61g376bhq03y5g2xszkrkrj5hwd928rly3xsp6rvfmnbixs";
|
2010-01-13 21:09:55 +00:00
|
|
|
};
|
|
|
|
|
2011-08-24 08:48:02 +01:00
|
|
|
configurePhase = ''
|
2017-03-01 14:29:46 +00:00
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace /usr $out
|
|
|
|
'';
|
2010-01-13 21:09:55 +00:00
|
|
|
|
2018-10-12 12:02:37 +01:00
|
|
|
nativeBuildInputs = [ perl gettext ];
|
2010-01-13 21:09:55 +00:00
|
|
|
|
2017-03-01 14:29:46 +00:00
|
|
|
meta = with stdenv.lib; {
|
2011-08-24 08:48:02 +01:00
|
|
|
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;
|
2018-07-22 20:50:19 +01:00
|
|
|
maintainers = with maintainers; [ndowens ];
|
2018-01-04 08:34:44 +00:00
|
|
|
|
2010-01-13 21:09:55 +00:00
|
|
|
};
|
|
|
|
}
|