1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-01-22 14:45:27 +00:00

shhopt: init at 1.1.7

This commit is contained in:
Pascal Wittmann 2015-07-09 15:23:25 +02:00
parent 7ec18455b2
commit d1c2fd81f6
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "shhopt-1.1.7";
src = fetchurl {
url = "http://shh.thathost.com/pub-unix/files/${name}.tar.gz";
sha256 = "0yd6bl6qw675sxa81nxw6plhpjf9d2ywlm8a5z66zyjf28sl7sds";
};
installFlags = "INSTBASEDIR=$(out)";
meta = with stdenv.lib; {
description = "A library for parsing command line options";
homepage = http://shh.thathost.com/pub-unix/;
license = licenses.artistic1;
platforms = platforms.linux;
};
}

View file

@ -8036,6 +8036,8 @@ let
shhmsg = callPackage ../development/libraries/shhmsg { };
shhopt = callPackage ../development/libraries/shhopt { };
silgraphite = callPackage ../development/libraries/silgraphite {};
graphite2 = callPackage ../development/libraries/silgraphite/graphite2.nix {};