Skip to content

Instantly share code, notes, and snippets.

@taylskid
Last active June 24, 2020 20:08
Show Gist options
  • Save taylskid/a99cec7d36fde215adaefbb630792167 to your computer and use it in GitHub Desktop.
Save taylskid/a99cec7d36fde215adaefbb630792167 to your computer and use it in GitHub Desktop.
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";
};
});
}
{ 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