Skip to content

Instantly share code, notes, and snippets.

@nhooyr
Created January 4, 2017 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nhooyr/98043c4c24e360a268700b122f780972 to your computer and use it in GitHub Desktop.
Save nhooyr/98043c4c24e360a268700b122f780972 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 = fish.buildInputs ++ [ autoconf ];
buildPhase = ''
autoconf
'';
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment