diff --git a/pkgs/development/libraries/shhopt/default.nix b/pkgs/development/libraries/shhopt/default.nix new file mode 100644 index 000000000000..dbac4c859619 --- /dev/null +++ b/pkgs/development/libraries/shhopt/default.nix @@ -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; + }; +} diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index 8437427ca7c9..8b92885de602 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -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 {};