mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 12:23:02 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
35 lines
815 B
Nix
35 lines
815 B
Nix
{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";
|
|
mainProgram = "par";
|
|
platforms = platforms.unix;
|
|
# See https://fedoraproject.org/wiki/Licensing/Par for license details
|
|
license = licenses.free;
|
|
};
|
|
}
|