nixpkgs/pkgs/development/libraries/docopt_cpp/default.nix
2021-03-25 12:27:59 +01:00

38 lines
896 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake, python2 }:
stdenv.mkDerivation rec {
version = "0.6.3";
pname = "docopt.cpp";
src = fetchFromGitHub {
owner = "docopt";
repo = "docopt.cpp";
rev = "v${version}";
sha256 = "0cz3vv7g5snfbsqcf3q8bmd6kv5qp84gj3avwkn4vl00krw13bl7";
};
nativeBuildInputs = [ cmake python2 ];
cmakeFlags = ["-DWITH_TESTS=ON"];
strictDeps = true;
doCheck = true;
postPatch = ''
substituteInPlace docopt.pc.in \
--replace "@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@" \
"@CMAKE_INSTALL_LIBDIR@"
'';
checkPhase = "LD_LIBRARY_PATH=$(pwd) python ./run_tests";
meta = with lib; {
description = "C++11 port of docopt";
homepage = "https://github.com/docopt/docopt.cpp";
license = with licenses; [ mit boost ];
platforms = platforms.all;
maintainers = with maintainers; [ knedlsepp ];
};
}