resholve: 0.8.0 -> 0.8.1; update readme

This commit is contained in:
Travis A. Everett 2022-07-31 12:56:24 -05:00 committed by Bjørn Forsman
parent 04663d62ac
commit 700f2bc99f
2 changed files with 7 additions and 7 deletions

View file

@ -53,13 +53,13 @@ Here's a simple example of how `resholve.mkDerivation` is already used in nixpkg
resholve.mkDerivation rec {
pname = "dgoss";
version = "0.3.16";
version = "0.3.18";
src = fetchFromGitHub {
owner = "aelsabbahy";
repo = "goss";
rev = "v${version}";
sha256 = "1m5w5vwmc9knvaihk61848rlq7qgdyylzpcwi64z84rkw8qdnj6p";
sha256 = "01ssc7rnnwpyhjv96qy8drsskghbfpyxpsahk8s62lh8pxygynhv";
};
dontConfigure = true;
@ -75,8 +75,8 @@ resholve.mkDerivation rec {
scripts = [ "bin/dgoss" ];
interpreter = "${bash}/bin/bash";
inputs = [ coreutils which ];
fake = {
external = [ "docker" ];
keep = {
"$CONTAINER_RUNTIME" = true;
};
};
};
@ -279,7 +279,7 @@ execer = [
];
# --wrapper '${gnugrep}/bin/egrep:${gnugrep}/bin/grep'
execer = [
wrapper = [
/*
This is the same verdict binlore will
come up with. It's a no-op just to demo

View file

@ -3,7 +3,7 @@
}:
rec {
version = "0.8.0";
version = "0.8.1";
rSrc =
# local build -> `make ci`; `make clean` to restore
# return to remote source
@ -14,6 +14,6 @@ rec {
owner = "abathur";
repo = "resholve";
rev = "v${version}";
hash = "sha256-oWS4ZBPjgH2UvYmvHVVRcyl15r3VS964BmB89y9DGo8=";
hash = "sha256-EVrv4Lj9GQa3g18BRQjC0wCxzsfsn4Ka1iq5Ouu1cII=";
};
}