2023-05-24 13:37:59 +00:00
|
|
|
{ lib, stdenvNoCC, fetchFromGitHub, shellspec, busybox-sandbox-shell, ksh, mksh, yash, zsh }:
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
stdenvNoCC.mkDerivation rec {
|
|
|
|
pname = "getoptions";
|
2024-09-19 14:19:46 +00:00
|
|
|
version = "3.3.2";
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ko1nksm";
|
|
|
|
repo = "getoptions";
|
|
|
|
rev = "v${version}";
|
2024-09-19 14:19:46 +00:00
|
|
|
hash = "sha256-hapOGPibqt2Mm6k73v63gHxrX+lifZ8xcwzj8vWbtgo=";
|
2022-08-12 12:06:08 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
|
|
|
|
doCheck = true;
|
|
|
|
|
2023-05-24 13:37:59 +00:00
|
|
|
nativeCheckInputs = [ shellspec ksh mksh yash zsh ]
|
|
|
|
++ lib.lists.optional (!stdenvNoCC.isDarwin) busybox-sandbox-shell;
|
2022-08-12 12:06:08 +00:00
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
# Disable checks against yash, since shellspec seems to be broken for yash>=2.54
|
|
|
|
# (see: https://github.com/NixOS/nixpkgs/pull/218264#pullrequestreview-1434402054)
|
2022-08-12 12:06:08 +00:00
|
|
|
preCheck = ''
|
|
|
|
sed -i '/shellspec -s posh/d' Makefile
|
2023-10-09 19:29:22 +00:00
|
|
|
sed -i '/shellspec -s yash/d' Makefile
|
2023-05-24 13:37:59 +00:00
|
|
|
'' + lib.strings.optionalString stdenvNoCC.isDarwin ''
|
|
|
|
sed -i "/shellspec -s 'busybox ash'/d" Makefile
|
2022-08-12 12:06:08 +00:00
|
|
|
'';
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
checkTarget = "test_in_various_shells";
|
2022-08-12 12:06:08 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
2024-06-20 14:57:18 +00:00
|
|
|
description = "Elegant option/argument parser for shell scripts (full support for bash and all POSIX shells)";
|
2022-08-12 12:06:08 +00:00
|
|
|
homepage = "https://github.com/ko1nksm/getoptions";
|
|
|
|
license = licenses.cc0;
|
|
|
|
platforms = platforms.all;
|
|
|
|
maintainers = with maintainers; [ matrss ];
|
|
|
|
};
|
|
|
|
}
|