fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ fetchurl, stdenv }:
2
3stdenv.mkDerivation rec {
4 name = "gengetopt-2.22.6";
5
6 src = fetchurl {
7 url = "mirror://gnu/gengetopt/${name}.tar.gz";
8 sha256 = "1xq1kcfs6hri101ss4dhym0jn96z4v6jdvx288mfywadc245mc1h";
9 };
10
11 doCheck = true;
12
13 meta = {
14 description = "Command-line option parser generator";
15
16 longDescription =
17 '' GNU Gengetopt program generates a C function that uses getopt_long
18 function to parse the command line options, to validate them and
19 fills a struct
20 '';
21
22 homepage = http://www.gnu.org/software/gengetopt/;
23
24 license = stdenv.lib.licenses.gpl3Plus;
25
26 maintainers = [ ];
27 platforms = stdenv.lib.platforms.all;
28 };
29}