argparse: init at v2.6
argparse: Added whitespace within brackets argparse: removed whitespace Update pkgs/development/libraries/argparse/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
50f079b882
commit
017cfa4a63
2 changed files with 27 additions and 0 deletions
25
pkgs/development/libraries/argparse/default.nix
Normal file
25
pkgs/development/libraries/argparse/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib, stdenv, fetchFromGitHub, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "argparse";
|
||||
version = "2.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "p-ranav";
|
||||
repo = "argparse";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-imLDuVbzkiE5hcQVarZGeNzNZE0/8LHMQqAiUYzPVks=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Argument Parser for Modern C++";
|
||||
homepage = "https://github.com/p-ranav/argparse";
|
||||
maintainers = with maintainers; [ _2gn ];
|
||||
platforms = platforms.unix;
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
|
@ -17044,6 +17044,8 @@ with pkgs;
|
|||
|
||||
arb = callPackage ../development/libraries/arb {};
|
||||
|
||||
argparse = callPackage ../development/libraries/argparse { };
|
||||
|
||||
argp-standalone = callPackage ../development/libraries/argp-standalone {};
|
||||
|
||||
aribb25 = callPackage ../development/libraries/aribb25 {
|
||||
|
|
Loading…
Reference in a new issue