summary refs log blame commit diff
path: root/pkgs/development/libraries/shhopt/default.nix
blob: 985ee59348b10afad30c5e3f44d37edce6bf6dcc (plain) (tree)
1
2
3
4
5
6
7
8
9
10









                                                                    
                                          







                                                               
{ 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;
  };
}