mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
geteltorito: init at 0.6 (#18614)
This commit is contained in:
parent
43bedb970d
commit
c535924f5f
50
pkgs/tools/misc/geteltorito/default.nix
Normal file
50
pkgs/tools/misc/geteltorito/default.nix
Normal file
@ -0,0 +1,50 @@
|
||||
{ stdenv, perl, ronn, fetchFromGitHub }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "geteltorito-${version}";
|
||||
version = "0.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Profpatsch";
|
||||
repo = "geteltorito";
|
||||
rev = version;
|
||||
sha256 = "05bcn3pam29xmsz1ykyqsdbkz8y23kcrvvhm987f65wd1g741f75";
|
||||
};
|
||||
|
||||
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 stdenv.lib; {
|
||||
description = "Extract the initial/default boot image from a CD image if existent";
|
||||
homepage = "https://userpages.uni-koblenz.de/~krienke/ftp/noarch/geteltorito/";
|
||||
maintainer = [ maintainers.profpatsch ];
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
|
||||
}
|
@ -1769,6 +1769,8 @@ in
|
||||
|
||||
gengetopt = callPackage ../development/tools/misc/gengetopt { };
|
||||
|
||||
geteltorito = callPackage ../tools/misc/geteltorito { };
|
||||
|
||||
getmail = callPackage ../tools/networking/getmail { };
|
||||
|
||||
getopt = callPackage ../tools/misc/getopt { };
|
||||
|
Loading…
Reference in New Issue
Block a user