diff options
Diffstat (limited to 'fun/owothia/default.nix')
-rw-r--r-- | fun/owothia/default.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/fun/owothia/default.nix b/fun/owothia/default.nix new file mode 100644 index 000000000000..04f98e97fba1 --- /dev/null +++ b/fun/owothia/default.nix @@ -0,0 +1,13 @@ +{ 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"; +} |