overlays/rofi: init

This commit is contained in:
LavaDesu 2021-12-07 14:02:50 +07:00
parent 7b8d93bd7a
commit 6eba275d79
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 14 additions and 0 deletions

View file

@ -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
View 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";
};
});
}