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

38 lines
896 B
Nix
Raw Normal View History

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