Last active
November 3, 2022 21:24
-
-
Save ramirez7/6f454dc19ef6bfb8f0e60b90aab955e3 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
| { pkgs ? import <nixpkgs> {} }: | |
| with pkgs; | |
| let src = fetchgit { | |
| url = "https://github.com/binji/smolnes"; | |
| rev = "9126b8c9aa32e58814627281bbab2ba06a159514"; | |
| sha256 = "03ifah66y42gw4h3bqh7mhykbbkn5s9byi48amq3qxiqpz260mdy"; | |
| }; | |
| in stdenv.mkDerivation { | |
| name = "smolnes"; | |
| version = "2022-11-02"; | |
| inherit src; | |
| buildInputs = [ SDL2 ]; | |
| installPhase = '' | |
| mkdir $out | |
| cp ./smolnes $out/ | |
| ''; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
^ This worked :)