mirror of
https://github.com/google/ormolu.git
synced 2024-11-27 13:13:23 +03:00
34b9b71601
It was decided that we're going to make the project compatible with just one GHC version at a time. Right now this version is going to be 8.6.4. A small refactoring included, plus support for the “deriving via” feature.
9 lines
297 B
Nix
9 lines
297 B
Nix
let
|
|
rev = "f52505fac8c82716872a616c501ad9eff188f97f";
|
|
sha256 = "0q2m2qhyga9yq29yz90ywgjbn9hdahs7i8wwlq7b55rdbyiwa5dy";
|
|
pkgs = import (builtins.fetchTarball {
|
|
url = "https://github.com/NixOS/nixpkgs/archive/${rev}.tar.gz";
|
|
inherit sha256;
|
|
}) { config.allowUnfree = true; };
|
|
in pkgs
|