Last active
June 24, 2020 20:08
-
-
Save taylskid/a99cec7d36fde215adaefbb630792167 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
self: super: | |
{ | |
gerbil = super.gerbil.overrideAttrs ( oldAttrs: rec { | |
version = "0.16"; | |
git-version = version; | |
src = self.fetchFromGitHub { | |
owner = "vyzo"; | |
repo = "gerbil"; | |
rev = "v${version}"; | |
sha256 = "0vng0kxpnwsg8jbjdpyn4sdww36jz7zfpfbzayg9sdpz6bjxjy0f"; | |
}; | |
}); | |
} |
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
{ nixpkgs ? import <nixpkgs> { overlays = [(import ./overlay.nix)]; } }: | |
nixpkgs.mkShell { | |
buildInputs = [nixpkgs.gerbil]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment