2011-08-24 07:48:02 +00:00
|
|
|
{stdenv, fetchurl, perl, gettext }:
|
2010-01-13 21:09:55 +00:00
|
|
|
|
2015-04-06 06:04:10 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-01-09 16:46:03 +00:00
|
|
|
name = "dos2unix-7.3.2";
|
2010-01-13 21:09:55 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-04-06 06:04:10 +00:00
|
|
|
url = "http://waterlan.home.xs4all.nl/dos2unix/${name}.tar.gz";
|
2016-01-09 16:46:03 +00:00
|
|
|
sha256 = "12c68c6wjnwrkyjj99fn6d0i4bf53aldj259lhjwq0g0nc5yxs67";
|
2010-01-13 21:09:55 +00:00
|
|
|
};
|
|
|
|
|
2011-08-24 07:48:02 +00:00
|
|
|
configurePhase = ''
|
|
|
|
sed -i -e s,/usr,$out, Makefile
|
2010-01-13 21:09:55 +00:00
|
|
|
'';
|
|
|
|
|
2011-08-24 07:48:02 +00:00
|
|
|
buildInputs = [ perl gettext ];
|
2010-01-13 21:09:55 +00:00
|
|
|
|
|
|
|
meta = {
|
2011-08-24 07:48:02 +00:00
|
|
|
homepage = http://waterlan.home.xs4all.nl/dos2unix.html;
|
|
|
|
description = "Tools to transform text files from dos to unix formats and vicervesa";
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.bsd2;
|
2011-08-24 07:48:02 +00:00
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
|
|
platforms = with stdenv.lib.platforms; all;
|
2010-01-13 21:09:55 +00:00
|
|
|
};
|
|
|
|
}
|