2011-08-24 07:48:02 +00:00
|
|
|
{stdenv, fetchurl, perl, gettext }:
|
2010-01-13 21:09:55 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-09-04 16:50:07 +00:00
|
|
|
name = "dos2unix-6.0.6";
|
2010-01-13 21:09:55 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-09-04 16:50:07 +00:00
|
|
|
url = http://waterlan.home.xs4all.nl/dos2unix/dos2unix-6.0.6.tar.gz;
|
|
|
|
sha256 = "0xnj4gmav1ypkgwmqldnq41b6l3cg08dyngkbygn9vrhlvlx9fwa";
|
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
|
|
|
};
|
|
|
|
}
|