mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
49 lines
1.3 KiB
Nix
49 lines
1.3 KiB
Nix
{ lib, stdenv, perl, ronn, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "geteltorito";
|
|
version = "0.6";
|
|
|
|
src = fetchurl {
|
|
url = "https://userpages.uni-koblenz.de/~krienke/ftp/noarch/geteltorito/geteltorito-${version}.tar.gz";
|
|
sha256 = "1gkbm9ahj2mgqrkrfpibzclsriqgsbsvjh19fr815vpd9f6snkxv";
|
|
};
|
|
|
|
buildInputs = [ perl ronn ];
|
|
|
|
unpackCmd = "";
|
|
dontBuild = true;
|
|
configurePhase = "";
|
|
installPhase = ''
|
|
# reformat README to ronn markdown
|
|
cat > README.new <<EOF
|
|
geteltorito -- ${meta.description}
|
|
===========
|
|
|
|
## SYNOPSIS
|
|
|
|
EOF
|
|
|
|
# skip the first two lines
|
|
# -e reformat function call
|
|
# -e reformat example
|
|
# -e make everything else (that is no code) that contains `: ` a list item
|
|
tail -n +3 README | sed \
|
|
-e 's/^\(call:\s*\)\(getelt.*\)$/\1`\2`/' \
|
|
-e 's/^\(example:\s*\)\(getelt.*\)$/\1 `\2`/' \
|
|
-e 's/^\(.*: \)/- \1/g' \
|
|
>> README.new
|
|
mkdir -p $out/man/man1
|
|
ronn --roff README.new --pipe > $out/man/man1/geteltorito.1
|
|
install -vD geteltorito $out/bin/geteltorito
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Extract the initial/default boot image from a CD image if existent";
|
|
homepage = "https://userpages.uni-koblenz.de/~krienke/ftp/noarch/geteltorito/";
|
|
maintainers = [ maintainers.Profpatsch ];
|
|
license = licenses.gpl2;
|
|
};
|
|
|
|
}
|