Home

horcrux @8cbda0b74aa054bc4659636eb91b2d5cf831ce6d - refs - log -
-
https://git.jolheiser.com/horcrux.git
Split your source across forges
horcrux / nix / default.nix
- raw -
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
{
  pkgs ? import <nixpkgs> { },
}:
let
  pkg = pkgs.callPackage ./pkg.nix { inherit pkgs; };
in
{
  horcrux = pkg;
  default = pkg;
}