5d26766cbf
Added homepage where missing, where the sources are pulled from: - https://github.com - https://git.sr.ht - https://gitlab.com - https://invent.kde.org - https://codeberg.org - https://gitlab.gnome.org - https://gitlab.freedesktop.org - https://git.FreeBSD.org - https://salsa.debian.org - https://git.tvdr.de - https://git.suckless.org
26 lines
526 B
Nix
26 lines
526 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildDunePackage,
|
|
}:
|
|
|
|
buildDunePackage (finalAttrs: {
|
|
pname = "clap";
|
|
version = "0.3.0";
|
|
|
|
minimalOCamlVersion = "4.07";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rbardou";
|
|
repo = "clap";
|
|
rev = finalAttrs.version;
|
|
hash = "sha256-IEol27AVYs55ntvNprBxOk3/EsBKAdPkF3Td3w9qOJg=";
|
|
};
|
|
|
|
meta = {
|
|
description = "Command-Line Argument Parsing, imperative style with a consumption mechanism";
|
|
homepage = "https://github.com/rbardou/clap";
|
|
license = lib.licenses.mit;
|
|
};
|
|
})
|