nixpkgs/pkgs/development/libraries/libargs/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

23 lines
533 B
Nix
Raw Normal View History

2021-08-13 19:51:48 +00:00
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "args";
2022-04-04 06:29:32 +00:00
version = "6.3.0";
2021-08-13 19:51:48 +00:00
src = fetchFromGitHub {
owner = "Taywee";
repo = pname;
rev = version;
2022-04-04 06:29:32 +00:00
sha256 = "sha256-fEM9KNqqxYbafMcHCW46Y//8Hrvd7gZrCIQhH5lhpFc=";
2021-08-13 19:51:48 +00:00
};
nativeBuildInputs = [ cmake ];
meta = with lib; {
description = "A simple header-only C++ argument parser library";
homepage = "https://github.com/Taywee/args";
license = licenses.mit;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}