mirror of https://git.jolheiser.com/ugit.git
11 lines
128 B
Nix
11 lines
128 B
Nix
|
{
|
||
|
pkgs ? import <nixpkgs>,
|
||
|
}:
|
||
|
let
|
||
|
pkg = pkgs.callPackage ./pkg.nix { inherit pkgs; };
|
||
|
in
|
||
|
{
|
||
|
ugit = pkg;
|
||
|
default = pkg;
|
||
|
}
|