mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 13:33:12 +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.
46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
{ lib, stdenv, fetchFromGitHub, coreutils, gawk }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "txt2man";
|
|
version = "1.7.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "mvertes";
|
|
repo = "txt2man";
|
|
rev = "txt2man-${version}";
|
|
hash = "sha256-Aqi5PNNaaM/tr9A/7vKeafYKYIs/kHbwHzE7+R/9r9s=";
|
|
};
|
|
|
|
makeFlags = [
|
|
"prefix=${placeholder "out"}"
|
|
];
|
|
|
|
postPatch = ''
|
|
for f in bookman src2man txt2man; do
|
|
substituteInPlace $f \
|
|
--replace "gawk" "${gawk}/bin/gawk" \
|
|
--replace "(date" "(${coreutils}/bin/date" \
|
|
--replace "=cat" "=${coreutils}/bin/cat" \
|
|
--replace "cat <<" "${coreutils}/bin/cat <<" \
|
|
--replace "expand" "${coreutils}/bin/expand" \
|
|
--replace "(uname" "(${coreutils}/bin/uname"
|
|
done
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
checkPhase = ''
|
|
# gawk and coreutils are part of stdenv but will not
|
|
# necessarily be in PATH at runtime.
|
|
sh -c 'unset PATH; printf hello | ./txt2man'
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Convert flat ASCII text to man page format";
|
|
homepage = "http://mvertes.free.fr/";
|
|
license = licenses.gpl2Plus;
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
};
|
|
}
|