567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
64 lines
1.4 KiB
Nix
64 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
fetchpatch2,
|
|
cmake,
|
|
python3,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "0.6.3";
|
|
pname = "docopt.cpp";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "docopt";
|
|
repo = "docopt.cpp";
|
|
rev = "v${version}";
|
|
sha256 = "0cz3vv7g5snfbsqcf3q8bmd6kv5qp84gj3avwkn4vl00krw13bl7";
|
|
};
|
|
|
|
patches = [
|
|
(fetchpatch2 {
|
|
name = "python3-for-tests";
|
|
url = "https://github.com/docopt/docopt.cpp/commit/b3d909dc952ab102a4ad5a1541a41736f35b92ba.patch?full_index=1";
|
|
hash = "sha256-LXnN36/JuHsCeLnjuPFa42dT52iOcnJd4NGYx96Z5c0=";
|
|
})
|
|
(fetchpatch2 {
|
|
name = "Increase-cmake_minimum_required-to-3.5";
|
|
url = "https://github.com/docopt/docopt.cpp/commit/05d507da0d153faff381f44968833ebffdc03447.patch?full_index=1";
|
|
hash = "sha256-bwKkhU3+GZFIUH0Ig0l9zcTtox9som3DY+ZApWrWl80=";
|
|
})
|
|
];
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
python3
|
|
];
|
|
|
|
cmakeFlags = [ "-DWITH_TESTS=ON" ];
|
|
|
|
strictDeps = true;
|
|
|
|
doCheck = true;
|
|
|
|
postPatch = ''
|
|
substituteInPlace docopt.pc.in \
|
|
--replace "@CMAKE_INSTALL_PREFIX@/@CMAKE_INSTALL_LIBDIR@" \
|
|
"@CMAKE_INSTALL_LIBDIR@"
|
|
'';
|
|
|
|
checkPhase = "python ./run_tests";
|
|
|
|
meta = {
|
|
description = "C++11 port of docopt";
|
|
homepage = "https://github.com/docopt/docopt.cpp";
|
|
license = with lib.licenses; [
|
|
mit
|
|
boost
|
|
];
|
|
platforms = lib.platforms.all;
|
|
maintainers = [ ];
|
|
};
|
|
}
|