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
855 B
Nix
Raw Normal View History

2021-08-13 21:51:48 +02:00
{ lib, stdenv, fetchFromGitHub, cmake }:
stdenv.mkDerivation rec {
pname = "args";
2022-04-04 08:29:32 +02:00
version = "6.3.0";
2021-08-13 21:51:48 +02:00
src = fetchFromGitHub {
owner = "Taywee";
repo = pname;
rev = version;
2022-04-04 08:29:32 +02:00
sha256 = "sha256-fEM9KNqqxYbafMcHCW46Y//8Hrvd7gZrCIQhH5lhpFc=";
2021-08-13 21:51:48 +02:00
};
nativeBuildInputs = [ cmake ];
2022-05-13 12:49:14 +02: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 21:51:48 +02:00
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 ];
};
}