user/eww: init
This commit is contained in:
parent
ed93b93c43
commit
5a4b56580b
12 changed files with 202 additions and 3 deletions
|
|
@ -1,5 +1,6 @@
|
|||
builtins.map (path: import path) [
|
||||
./discord.nix
|
||||
./eww.nix
|
||||
./material-icons.nix
|
||||
./picom.nix
|
||||
./polymc.nix
|
||||
|
|
|
|||
18
overlays/eww.nix
Normal file
18
overlays/eww.nix
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
self: super: {
|
||||
# Mainly for https://github.com/elkowar/eww/pull/280
|
||||
eww = super.eww.overrideAttrs (old: rec {
|
||||
version = "unstable-fb0e57a";
|
||||
src = self.fetchFromGitHub {
|
||||
owner = "elkowar";
|
||||
repo = "eww";
|
||||
rev = "fb0e57a0149904e76fb33807a2804d4af82350de";
|
||||
sha256 = "089rvcswr0wy05fac8xbfrws1qacqi3iialpv8sai7mzlpsw21m0";
|
||||
};
|
||||
cargoSha256 = "1s7rxilqis2nbvjqjp5zarvmr9g6ndcicyx1rilgjv34qwna3mz1";
|
||||
cargoDeps = self.rustPlatform.fetchCargoTarball {
|
||||
inherit src;
|
||||
name = "${old.pname}-${version}";
|
||||
sha256 = cargoSha256;
|
||||
};
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue