Skip to content

Instantly share code, notes, and snippets.

Created January 4, 2017 23:04
Show Gist options
  • Save anonymous/baf36da59ecb912bad234c4f07542fe4 to your computer and use it in GitHub Desktop.
Save anonymous/baf36da59ecb912bad234c4f07542fe4 to your computer and use it in GitHub Desktop.
fish = lib.overrideDerivation fish (attrs: rec {
name = "fish-${version}-dev";
version = "2.3.1";
src = fetchFromGitHub {
owner = "fish-shell";
repo = "fish-shell";
rev = "89e48ba0b3b2ff0f254443117483814402f8f6cd";
sha256 = "1hznlfa75l24bwdx5rkwnr5ni4x2zssh2n1m3jv10mnsi0slwrgw";
};
buildInputs = [ autoconf automake ];
preConfigure = ''
autoreconf --no-recursive
'';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment