blob: b70d0525c152a49f0de9610e650118837cca535a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
{ depot ? (import ../../../. {})
, pkgs ? depot.third_party.nixpkgs
, ... }:
let
basePkg = pkgs.haskellPackages.callPackage ./pkg.nix { };
in
pkgs.haskell.lib.overrideSrc basePkg {
src = depot.third_party.gitignoreSource ./.;
version = "canon";
}
|