about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/text/par/default.nix
blob: e64dbd367be5330f2230ed02791f11e83badef4f (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
27
28
29
30
31
32
33
{lib, stdenv, fetchurl}:

stdenv.mkDerivation rec {
  pname = "par";
  version = "1.53.0";

  src = fetchurl {
    url = "http://www.nicemice.net/par/Par-${version}.tar.gz";
    sha256 = "sha256-yAnGIOuCtYlVOsVLmJjI2lUZbSYjOdE8BG8r5ErEeAQ=";
  };

  makefile = "protoMakefile";
  preBuild = ''
    makeFlagsArray+=(CC="${stdenv.cc.targetPrefix}cc -c" LINK1=${stdenv.cc.targetPrefix}cc)
  '';

  installPhase = ''
    mkdir -p $out/bin
    cp par $out/bin

    mkdir -p $out/share/man/man1
    cp  par.1 $out/share/man/man1
  '';


  meta = with lib; {
    homepage = "http://www.nicemice.net/par/";
    description = "Paragraph reflow for email";
    platforms = platforms.unix;
    # See https://fedoraproject.org/wiki/Licensing/Par for license details
    license = licenses.free;
  };
}