Last active
November 22, 2019 21:31
-
-
Save lilyball/419a53954dbbd3887475b0223bcce816 to your computer and use it in GitHub Desktop.
Nix overlay for https://github.com/lunasorcery/zalgo
This file contains 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
self: super: | |
{ | |
zalgo = | |
# make sure we aren't overwriting a package from nixpkgs | |
assert !super?zalgo; | |
self.stdenv.mkDerivation { | |
name = "zalgo"; | |
src = self.fetchFromGitHub { | |
owner = "lunasorcery"; | |
repo = "zalgo"; | |
rev = "2dc5a121af76474c79c829acfaa119a8131994dd"; | |
sha256 = "02z9lc9yb2cbig5l30w6j5wy1z6jz47cj65pr5f8sn7ganwnmklw"; | |
}; | |
installPhase = '' | |
mkdir -p $out/bin | |
cp zalgo $out/bin/zalgo | |
''; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment