mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
argbash: init at 2.8.1 (#70489)
* argbash: init at 2.8.1 * changed name to pname * updated sha256 hash
This commit is contained in:
parent
01ce3ce897
commit
5dc0c774fb
2 changed files with 29 additions and 0 deletions
27
pkgs/development/tools/misc/argbash/default.nix
Normal file
27
pkgs/development/tools/misc/argbash/default.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ stdenv, fetchFromGitHub, autoconf }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "argbash";
|
||||
|
||||
version = "2.8.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "matejak";
|
||||
repo = "argbash";
|
||||
rev = "${version}";
|
||||
sha256 = "0zara7v3pnwiwkpb0x0g37pxhmim4425q4gba712f6djj115r1mr";
|
||||
};
|
||||
|
||||
sourceRoot = "${src}/resources";
|
||||
|
||||
nativeBuildInputs = [ autoconf ];
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Bash argument parsing code generator";
|
||||
homepage = "https://argbash.io/";
|
||||
license = licenses.free; # custom license. See LICENSE in source repo.
|
||||
maintainers = with maintainers; [ rencire ];
|
||||
};
|
||||
}
|
|
@ -9352,6 +9352,8 @@ in
|
|||
|
||||
kt = callPackage ../tools/misc/kt {};
|
||||
|
||||
argbash = callPackage ../development/tools/misc/argbash {};
|
||||
|
||||
arpa2cm = callPackage ../development/tools/build-managers/arpa2cm { };
|
||||
|
||||
asn2quickder = python2Packages.callPackage ../development/tools/asn2quickder {};
|
||||
|
|
Loading…
Reference in a new issue