summary refs log tree commit diff
path: root/pkgs/tools/text/dos2unix/default.nix
blob: 59697891b6a3d259f1105dfadff498dce0d5609c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{stdenv, fetchurl, perl, gettext }:

stdenv.mkDerivation rec {
  name = "dos2unix-${version}";
  version = "7.4.0";

  src = fetchurl {
    url = "https://waterlan.home.xs4all.nl/dos2unix/${name}.tar.gz";
    sha256 = "12h4c61g376bhq03y5g2xszkrkrj5hwd928rly3xsp6rvfmnbixs";
  };

  configurePhase = ''
    substituteInPlace Makefile \
    --replace /usr $out
    '';

  buildInputs = [ perl gettext ];

  meta = with stdenv.lib; {
    homepage = http://waterlan.home.xs4all.nl/dos2unix.html;
    description = "Tools to transform text files from dos to unix formats and vicervesa";
    license = licenses.bsd2;
    maintainers = with maintainers; [viric ndowens ];

  };
}