git-series: use nixpkgs libcurl

This replaces the vendored copy from curl-sys.
This commit is contained in:
edef 2019-10-16 17:53:49 +00:00
parent f7de72a552
commit 2bc9e6cb37

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, fetchpatch, rustPlatform, openssl, cmake, perl, pkgconfig, zlib }:
{ stdenv, fetchFromGitHub, fetchpatch, rustPlatform, openssl, cmake, perl, pkgconfig, zlib, curl }:
with rustPlatform;
@ -28,7 +28,7 @@ buildRustPackage rec {
];
nativeBuildInputs = [ cmake pkgconfig perl ];
buildInputs = [ openssl zlib ];
buildInputs = [ openssl zlib curl ];
postBuild = ''
install -D "$src/git-series.1" "$out/man/man1/git-series.1"