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

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

31 lines
839 B
Nix
Raw Normal View History

2021-08-13 22:51:48 +03:00
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "args";
2023-01-14 10:26:57 +03:00
version = "6.4.6";
2021-08-13 22:51:48 +03:00
src = fetchFromGitHub {
owner = "Taywee";
repo = pname;
rev = version;
2023-01-14 10:26:57 +03:00
sha256 = "sha256-2gH3h3QAl0+XVULt/fR2UUGKNIxTUmnRRdxPOFdpVy4=";
2021-08-13 22:51:48 +03:00
};
nativeBuildInputs = [ cmake ];
2022-05-13 13:49:14 +03:00
# https://github.com/Taywee/args/issues/108
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace '$'{CMAKE_INSTALL_LIBDIR_ARCHIND} '$'{CMAKE_INSTALL_LIBDIR}
substituteInPlace packaging/pkgconfig.pc.in \
--replace '$'{prefix}/@CMAKE_INSTALL_INCLUDEDIR@ @CMAKE_INSTALL_FULL_INCLUDEDIR@
'';
2021-08-13 22:51:48 +03:00
meta = with lib; {
description = "A simple header-only C++ argument parser library";
homepage = "https://github.com/Taywee/args";
license = licenses.mit;
2023-07-23 20:30:22 +03:00
maintainers = with maintainers; [ ];
2021-08-13 22:51:48 +03:00
};
}