mirror of
https://github.com/snoyberg/keter.git
synced 2024-11-27 10:12:01 +03:00
3aa1dd53d1
These changes don't need to be kept up to date with cabal file This also closes https://github.com/snoyberg/keter/issues/263 Fix all incoming issues with this change
9 lines
339 B
Nix
9 lines
339 B
Nix
{ pkgs ? import ./nix/pkgs.nix, ... }:
|
|
let
|
|
ignore = import (builtins.fetchGit {
|
|
url = "https://github.com/hercules-ci/gitignore.nix";
|
|
rev = "bff2832ec341cf30acb3a4d3e2e7f1f7b590116a";
|
|
}) { inherit (pkgs) lib; };
|
|
in
|
|
pkgs.haskellPackages.callCabal2nix "keter" (ignore.gitignoreSource ./.) { }
|