feat: move to gruvbox
This commit is contained in:
parent
1fab0efd26
commit
c467ee449d
18 changed files with 442 additions and 436 deletions
38
overlays/derivations/river-bedload/default.nix
Normal file
38
overlays/derivations/river-bedload/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
stdenv,
|
||||
fetchgit,
|
||||
zig_0_13,
|
||||
callPackage,
|
||||
wayland-scanner,
|
||||
wayland-protocols,
|
||||
wayland,
|
||||
pkg-config,
|
||||
}:
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "river-bedload";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchgit {
|
||||
url = "https://git.sr.ht/~novakane/${finalAttrs.pname}";
|
||||
rev = "v${finalAttrs.version}";
|
||||
hash = "sha256-AMxFdKVy4E1xVdimqxm8KZW39krk/Mt27MWLxEiq1JA=";
|
||||
};
|
||||
|
||||
deps = callPackage ./build.zig.zon.nix {};
|
||||
|
||||
zigBuildFlags = [
|
||||
"--system"
|
||||
"${finalAttrs.deps}"
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
zig_0_13.hook
|
||||
pkg-config
|
||||
wayland-scanner
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
wayland
|
||||
wayland-protocols
|
||||
];
|
||||
})
|
Loading…
Add table
Add a link
Reference in a new issue