Skip to content

Commit

Permalink
geteltorito: init at 0.6 (#18614)
Browse files Browse the repository at this point in the history
  • Loading branch information
Profpatsch committed Oct 4, 2016
1 parent 43bedb9 commit c535924
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 0 deletions.
50 changes: 50 additions & 0 deletions pkgs/tools/misc/geteltorito/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};

}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit c535924

Please sign in to comment.