overlays/rofi: init
This commit is contained in:
parent
7b8d93bd7a
commit
6eba275d79
2 changed files with 14 additions and 0 deletions
|
|
@ -1,5 +1,6 @@
|
||||||
builtins.map (path: import path) [
|
builtins.map (path: import path) [
|
||||||
./discord.nix
|
./discord.nix
|
||||||
./material-icons.nix
|
./material-icons.nix
|
||||||
|
./rofi.nix
|
||||||
./xinit.nix
|
./xinit.nix
|
||||||
]
|
]
|
||||||
|
|
|
||||||
13
overlays/rofi.nix
Normal file
13
overlays/rofi.nix
Normal file
|
|
@ -0,0 +1,13 @@
|
||||||
|
self: super: {
|
||||||
|
rofi-unwrapped = super.rofi-unwrapped.overrideAttrs (_: rec {
|
||||||
|
version = "1.7.2";
|
||||||
|
|
||||||
|
src = super.fetchFromGitHub {
|
||||||
|
owner = "davatorium";
|
||||||
|
repo = "rofi";
|
||||||
|
rev = version;
|
||||||
|
fetchSubmodules = true;
|
||||||
|
sha256 = "0yarkzhn7vxqxafmz196kvklzwdxygbhd0d29gxm7lrfba8brdxy";
|
||||||
|
};
|
||||||
|
});
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue