netavark: 1.3.0 -> 1.4.0

https://github.com/containers/netavark/releases/tag/v1.4.0
This commit is contained in:
zowoq 2022-12-08 09:10:04 +10:00
parent 2f80026cd2
commit 4d7177b500

View File

@ -7,22 +7,22 @@
rustPlatform.buildRustPackage rec {
pname = "netavark";
version = "1.3.0";
version = "1.4.0";
src = fetchFromGitHub {
owner = "containers";
repo = pname;
rev = "v${version}";
sha256 = "sha256-5LczayUgIJ2mcSiHKadegzTM8PvejAD0lhUlXO4Js30=";
sha256 = "sha256-nG+HTwF3v8FUK2SE+I312Ec5y6YPShS9si9Pc2SG1jc=";
};
cargoHash = "sha256-gBdhdJD5EkkYNdpTNq+spySaoWnWViy9+bXTL7ps4PE=";
cargoHash = "sha256-szIG1udBCZj18sN3IiQtOuR8qw/xWhTMgb/n4lyTwvs=";
nativeBuildInputs = [ installShellFiles mandown ];
postBuild = ''
make -C docs
installManPage docs/*.1
make -C docs netavark.1
installManPage docs/netavark.1
'';
meta = with lib; {