Created
January 4, 2017 23:04
-
-
Save anonymous/baf36da59ecb912bad234c4f07542fe4 to your computer and use it in GitHub Desktop.
This file contains 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
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