Created
September 13, 2018 09:33
-
-
Save adrianparvino/dc436c34c49bf5155cbe7d8089a28066 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dmenu = (pkgs.dmenu.override { | |
patches = [ | |
(pkgs.fetchurl { | |
url = https://tools.suckless.org/dmenu/patches/dmenu-center-4.8.diff; | |
sha256 = "0z21l82y11rx0kd74abpyh925rq29dl34y7p4868dl3ffknc7ifz"; | |
}) | |
(pkgs.fetchurl { | |
url = https://tools.suckless.org/dmenu/patches/dmenu-password-4.7.diff; | |
sha256 = "1y6r57iqp31q32zwzyavkiy9hv81ffbpb5hm03xxmpv60wvy3nib"; | |
}) | |
]; | |
}).overrideAttrs (oldAttrs_: { | |
preBuild = '' | |
cp ${./dmenu/config.def.h} ./config.def.h | |
''; | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment