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