Merge pull request #269623 from GaetanLepage/river

river: 0.2.4 -> 0.2.5, rivercarro: 0.1.4 -> 0.3.0
This commit is contained in:
Adam C. Stephens 2023-11-24 10:34:46 -05:00 committed by GitHub
commit b2063364e1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 9 deletions

View File

@ -4,26 +4,28 @@
, pkg-config
, river
, wayland
, zig_0_9
, wayland-protocols
, zig_0_11
}:
stdenv.mkDerivation (finalAttrs: {
pname = "rivercarro";
version = "0.1.4";
version = "0.3.0";
src = fetchFromSourcehut {
owner = "~novakane";
repo = "rivercarro";
rev = "v${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-eATbbwIt5ytEVLPodyq9vFF9Rs5S1xShpvNYQnfwdV4=";
hash = "sha256-lucwn9MmyVd4pynuG/ZAXnZ384wdS0gi7JN44vNQA1I=";
};
nativeBuildInputs = [
pkg-config
river
wayland
zig_0_9.hook
wayland-protocols
zig_0_11.hook
];
meta = with lib; {
@ -42,6 +44,6 @@ stdenv.mkDerivation (finalAttrs: {
changelog = "https://git.sr.ht/~novakane/rivercarro/refs/v${finalAttrs.version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ kraem ];
inherit (zig_0_9.meta) platforms;
inherit (zig_0_11.meta) platforms;
};
})

View File

@ -14,14 +14,14 @@
, wayland-protocols
, wlroots_0_16
, xwayland
, zig_0_10
, zig_0_11
, withManpages ? true
, xwaylandSupport ? true
}:
stdenv.mkDerivation (finalAttrs: {
pname = "river";
version = "0.2.4";
version = "0.2.5";
outputs = [ "out" ] ++ lib.optionals withManpages [ "man" ];
@ -30,14 +30,14 @@ stdenv.mkDerivation (finalAttrs: {
repo = "river";
rev = "refs/tags/v${finalAttrs.version}";
fetchSubmodules = true;
hash = "sha256-cIcO6owM6eYn+obYVaBOVQpnBx4++KOqQk5Hzo3GcNs=";
hash = "sha256-Xd9hg7UGTBlEyw8BDpTQYq/IRC7vUXhMx9j7YcCaQ20=";
};
nativeBuildInputs = [
pkg-config
wayland
xwayland
zig_0_10.hook
zig_0_11.hook
]
++ lib.optional withManpages scdoc;