rivercarro: 0.1.2 -> 0.1.4

This commit is contained in:
kraem 2022-06-16 20:50:54 +02:00
parent 8d64fd7d58
commit 95961f8927

View file

@ -5,25 +5,23 @@
, river
, wayland
, pkg-config
, scdoc
}:
stdenv.mkDerivation rec {
pname = "rivercarro";
version = "0.1.2";
version = "0.1.4";
src = fetchFromSourcehut {
owner = "~novakane";
repo = pname;
fetchSubmodules = true;
rev = "v${version}";
sha256 = "07md837ki0yln464w8vgwyl3yjrvkz1p8alxlmwqfn4w45nqhw77";
sha256 = "sha256-eATbbwIt5ytEVLPodyq9vFF9Rs5S1xShpvNYQnfwdV4=";
};
nativeBuildInputs = [
pkg-config
river
scdoc
wayland
zig
];
@ -36,7 +34,7 @@ stdenv.mkDerivation rec {
installPhase = ''
runHook preInstall
zig build -Drelease-safe -Dcpu=baseline -Dman-pages --prefix $out install
zig build -Drelease-safe -Dcpu=baseline --prefix $out install
runHook postInstall
'';