nixpkgs/pkgs/development/libraries/argtable/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
1.3 KiB
Nix
Raw Normal View History

2021-10-15 17:30:30 +00:00
{ lib
, stdenv
2021-01-08 18:30:13 +00:00
, fetchFromGitHub
, cmake
}:
stdenv.mkDerivation rec {
pname = "argtable";
2021-10-15 17:30:30 +00:00
version = "3.2.1";
srcVersion = "v${version}.52f24e5";
2021-01-08 18:30:13 +00:00
src = fetchFromGitHub {
owner = "argtable";
repo = "argtable3";
rev = srcVersion;
2021-10-15 17:30:30 +00:00
hash = "sha256-HFsk91uJXQ0wpvAQxP4/yZwRQx9kLH7KgB3Y/+zcZC0=";
2021-01-08 18:30:13 +00:00
};
nativeBuildInputs = [ cmake ];
2021-10-15 17:30:30 +00:00
cmakeFlags = [
"-DBUILD_SHARED_LIBS=ON"
];
2021-01-08 18:30:13 +00:00
postPatch = ''
patchShebangs tools/build
'';
meta = with lib; {
2022-01-07 06:25:43 +00:00
homepage = "https://github.com/argtable/argtable3";
2021-01-08 18:30:13 +00:00
description = "A single-file, ANSI C command-line parsing library";
longDescription = ''
Argtable is an open source ANSI C library that parses GNU-style
command-line options. It simplifies command-line parsing by defining a
declarative-style API that you can use to specify what your command-line
syntax looks like. Argtable will automatically generate consistent error
handling logic and textual descriptions of the command line syntax, which
are essential but tedious to implement for a robust CLI program.
'';
license = with licenses; bsd3;
maintainers = with maintainers; [ AndersonTorres artuuge ];
platforms = with platforms; all;
};
}
2021-10-15 17:30:30 +00:00
# TODO: a NixOS test suite
# TODO: multiple outputs
# TODO: documentation
# TODO: build both shared and static libs