Created
October 14, 2021 09:21
-
-
Save puffnfresh/7511c8a635eeda0c17923ed95f4a6214 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
{ dwm, fetchgit }: | |
dwm.overrideAttrs (attrs: { | |
src = fetchgit { | |
url = "https://git.sr.ht/~mil/sxmo-dwm"; | |
rev = "6.2.14"; | |
sha256 = "1mrzi4isdz8415gc5b3nmqhvf5wwj0ia66n3vifynp1kmsgwxa6d"; | |
}; | |
}) |
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
{ stdenv, fetchgit }: | |
stdenv.mkDerivation rec { | |
name = "sxmo-utils"; | |
version = "1.5.2.1"; | |
src = fetchgit { | |
url = "https://git.sr.ht/~mil/sxmo-utils"; | |
rev = version; | |
sha256 = "0jzvzdahzfrqqkwq9pgm5wa9lpqwzxsv5q0ggjq81whdgzvyfrpr"; | |
}; | |
installFlags = [ "DESTDIR=$(out)" "PREFIX=" ]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment