bupstash: 0.7.0 -> 0.8.0

This commit is contained in:
R. RyanTM 2021-03-24 11:31:13 +00:00 committed by Robert Schütz
parent 48f244a518
commit 8593ea1d36

View File

@ -1,22 +1,22 @@
{ lib, fetchFromGitHub, installShellFiles, rustPlatform, ronn, pkg-config, libsodium }: { lib, fetchFromGitHub, installShellFiles, rustPlatform, ronn, pkg-config, libsodium }:
rustPlatform.buildRustPackage rec { rustPlatform.buildRustPackage rec {
pname = "bupstash"; pname = "bupstash";
version = "0.7.0"; version = "0.8.0";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "andrewchambers"; owner = "andrewchambers";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "sha256-4+Ra7rNvIL4SpdCkRbPBNrZeTb1dMbuwZx+D++1qsGs="; sha256 = "sha256-zZHJlC0OICIc3G825t7GrZwdmkaaLQKzX2IwkKigkV4=";
}; };
cargoSha256 = "sha256-cZSscmH3XPfH141hZhew79/UZHsqDZRN3EoNnYkW0wA="; cargoSha256 = "sha256-KVeIF6x+gpb8vkqCtZptF5EX9G1Zv6q8L6tskN6HziM=";
nativeBuildInputs = [ ronn pkg-config installShellFiles ]; nativeBuildInputs = [ ronn pkg-config installShellFiles ];
buildInputs = [ libsodium ]; buildInputs = [ libsodium ];
postBuild = '' postBuild = ''
RUBYOPT="-KU -E utf-8:utf-8" ronn doc/man/*.md RUBYOPT="-KU -E utf-8:utf-8" ronn -r doc/man/*.md
''; '';
postInstall = '' postInstall = ''