keter/default.nix
Jappie Klooster 3aa1dd53d1 Change nix to not be kept up to date with cabal file
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
2022-05-13 11:00:04 -04:00

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 ./.) { }