mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
25 lines
668 B
Nix
25 lines
668 B
Nix
{stdenv, fetchurl, perl, gettext }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "dos2unix-7.2.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://waterlan.home.xs4all.nl/dos2unix/${name}.tar.gz";
|
|
sha256 = "1ws5d66gjs3iqc92d0qxwivixl9092540kxqq2gr6jdzmflqm4jk";
|
|
};
|
|
|
|
configurePhase = ''
|
|
sed -i -e s,/usr,$out, Makefile
|
|
'';
|
|
|
|
buildInputs = [ perl gettext ];
|
|
|
|
meta = {
|
|
homepage = http://waterlan.home.xs4all.nl/dos2unix.html;
|
|
description = "Tools to transform text files from dos to unix formats and vicervesa";
|
|
license = stdenv.lib.licenses.bsd2;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
platforms = with stdenv.lib.platforms; all;
|
|
};
|
|
}
|