libargs: init at 6.2.6

This commit is contained in:
Sandro Jäckel
2021-08-13 21:51:48 +02:00
parent a786475685
commit d3f53e7c4f
2 changed files with 24 additions and 0 deletions
@@ -0,0 +1,22 @@
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "args";
version = "6.2.6";
src = fetchFromGitHub {
owner = "Taywee";
repo = pname;
rev = version;
sha256 = "sha256-g5OXuZNi5bkWuSg7SNmhA6vyHUOFU8suYkH8nGx6tvg=";
};
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 ];
};
}
+2
View File
@@ -16348,6 +16348,8 @@ with pkgs;
libayatana-appindicator-gtk3 = libayatana-appindicator.override { gtkVersion = "3"; };
libayatana-appindicator = callPackage ../development/libraries/libayatana-appindicator { };
libargs = callPackage ../development/libraries/libargs { };
libarchive = callPackage ../development/libraries/libarchive {
autoreconfHook = buildPackages.autoreconfHook269;
};