frobar: Build zelbar on current nixpkgs

Reduces dependencies
This commit is contained in:
Geoffrey Frogeye 2025-12-05 12:12:45 +01:00
parent 42bcd2a9a2
commit 8cf1959759
2 changed files with 10 additions and 15 deletions

View file

@ -1,17 +1,11 @@
{
zelbarnixpkgs ? builtins.getFlake "github:GeoffreyFrogeye/nixpkgs/zelbar",
zelbarnixpkgs ? builtins.getFlake "github:wlcx/nixpkgs/zelbar",
nixpkgs ? <nixpkgs>,
pkgs ? import nixpkgs {
overlays = [
(
self: super:
let
zelbarpkgs = import zelbarnixpkgs { inherit (super) system; };
in
{
inherit (zelbarpkgs) zelbar;
}
)
(self: super: {
zelbar = super.callPackage "${zelbarnixpkgs}/pkgs/by-name/ze/zelbar/package.nix" { };
})
];
},
...