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

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

46 lines
1.1 KiB
Nix
Raw Normal View History

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