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
for ghc802 specifically: | |
nixpkgs.config.packageOverrides = pkgs: | |
{ | |
haskell = pkgs.haskell // { | |
packages = pkgs.haskell.packages // { | |
ghc802 = pkgs.haskell.packages.ghc802.override { | |
overrides = self: super: | |
{ | |
ghc-syb-utils = pkgs.haskell.lib.dontCheck super.ghc-syb-utils; |
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
#!/bin/bash | |
# | |
# git get | |
# | |
# Place this script in your path, so that git(1) can find it. Presto! | |
# You can now type `git get` instead of `git pull` and enjoy the | |
# advantages of rebasing atop instead of merging remote changes. | |
# | |
# If you have local changes, use `git get --stash` to stash and | |
# pop afterwards your changes automatically. |