depot/third_party/nixpkgs/pkgs/development/tools/misc/argbash/default.nix
Default email 87f9c27ba9 Project import generated by Copybara.
GitOrigin-RevId: fe2ecaf706a5907b5e54d979fbde4924d84b65fc
2023-04-12 14:48:02 +02:00

50 lines
963 B
Nix

{ lib
, stdenv
, fetchFromGitHub
, autoconf
, makeWrapper
, python3Packages
, runtimeShell
}:
stdenv.mkDerivation (self: {
pname = "argbash";
version = "2.10.0";
src = fetchFromGitHub {
owner = "matejak";
repo = "argbash";
rev = self.version;
hash = "sha256-G739q6OhsXEldpIxiyOU51AmG4RChMqaN1t2wOy6sPU=";
};
postPatch = ''
patchShebangs .
substituteInPlace resources/Makefile \
--replace '/bin/bash' "${runtimeShell}"
'';
nativeBuildInputs = [
autoconf
makeWrapper
python3Packages.docutils
];
makeFlags = [
"-C" "resources"
"PREFIX=$(out)"
];
postInstall = ''
wrapProgram $out/bin/argbash \
--prefix PATH : '${autoconf}/bin'
'';
meta = {
homepage = "https://argbash.io/";
description = "Bash argument parsing code generator";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ AndersonTorres ];
platforms = lib.platforms.all;
};
})