1
1
mirror of https://github.com/srid/rib.git synced 2024-11-30 03:45:00 +03:00
rib/default.nix
2019-07-11 13:58:46 -04:00

24 lines
580 B
Nix

let
pkgs = import <nixpkgs> { };
compiler = "default";
haskellPackages =
if compiler == "default"
then pkgs.haskellPackages
else pkgs.haskell.packages.${compiler};
in
haskellPackages.developPackage {
root = ./.;
source-overrides = {
clay = pkgs.fetchFromGitHub {
owner = "sebastiaanvisser";
repo = "clay";
rev = "54dc9eaf0abd180ef9e35d97313062d99a02ee75";
sha256 = "0y38hyd2gvr7lrbxkrjwg4h0077a54m7gxlvm9s4kk0995z1ncax";
};
};
overrides = self: super: with pkgs.haskell.lib; {
clay = dontCheck super.clay;
};
}