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:
parent
7ec18455b2
commit
d1c2fd81f6
19
pkgs/development/libraries/shhopt/default.nix
Normal file
19
pkgs/development/libraries/shhopt/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue