restinio: 0.7.1 -> 0.7.2
Diff: https://github.com/Stiffstream/restinio/compare/v.0.7.1...v.0.7.2 Changelog: https://github.com/Stiffstream/restinio/releases/tag/v.0.7.2
This commit is contained in:
parent
6224a79e0b
commit
bfb4d23e18
1 changed files with 2 additions and 27 deletions
|
@ -2,7 +2,6 @@
|
||||||
lib,
|
lib,
|
||||||
stdenv,
|
stdenv,
|
||||||
fetchFromGitHub,
|
fetchFromGitHub,
|
||||||
fetchpatch,
|
|
||||||
cmake,
|
cmake,
|
||||||
asio,
|
asio,
|
||||||
boost,
|
boost,
|
||||||
|
@ -22,39 +21,15 @@ assert !with_boost_asio -> asio != null;
|
||||||
|
|
||||||
stdenv.mkDerivation (finalAttrs: {
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
pname = "restinio";
|
pname = "restinio";
|
||||||
version = "0.7.1";
|
version = "0.7.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "Stiffstream";
|
owner = "Stiffstream";
|
||||||
repo = "restinio";
|
repo = "restinio";
|
||||||
rev = "v.${finalAttrs.version}";
|
rev = "v.${finalAttrs.version}";
|
||||||
hash = "sha256-XodG+dVW4iBgFx0Aq0+/pZyCLyqTBtW7e9r69y176Ro=";
|
hash = "sha256-Nv/VVdHciCv+DsVu3MqfXeAa8Ef+qi6c1OaTAVrYUg0=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = let
|
|
||||||
useCommit = {id, name, hash}:
|
|
||||||
fetchpatch {
|
|
||||||
inherit name hash;
|
|
||||||
url = "https://github.com/Stiffstream/restinio/commit/${id}.patch";
|
|
||||||
};
|
|
||||||
in [
|
|
||||||
(useCommit {
|
|
||||||
id = "57e6ae3f73a03a5120feb80a7bb5dca27179fa38";
|
|
||||||
name = "restinio-unvendor-catch2_part1.patch";
|
|
||||||
hash = "sha256-2Htt9WTP6nrh+1y7y2xleFj568IpnSEn9Qhb1ObLam8=";
|
|
||||||
})
|
|
||||||
(useCommit {
|
|
||||||
id = "0060e493b99f03c38dda519763f6d6701bc18112";
|
|
||||||
name = "restinio-unvendor-catch2_part2.patch";
|
|
||||||
hash = "sha256-Eg/VNxPwNtEYmalP5myn+QvqwU6wln9v0vxbRelRHA8=";
|
|
||||||
})
|
|
||||||
(useCommit {
|
|
||||||
id = "05bea25f82917602a49b72b8ea10eeb43984762f";
|
|
||||||
name = "restinio-unvendor-catch2_part3.patch";
|
|
||||||
hash = "sha256-fA+U/Y7FyrxDRiWSVXCy9dMF4gmfDLag7gBWoY74In0=";
|
|
||||||
})
|
|
||||||
];
|
|
||||||
|
|
||||||
strictDeps = true;
|
strictDeps = true;
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
Loading…
Reference in a new issue