mirror of
https://github.com/daylinmorgan/git-server.git
synced 2024-11-14 16:17:53 -06:00
24 lines
459 B
Nix
24 lines
459 B
Nix
|
{
|
||
|
description = "git repos";
|
||
|
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||
|
};
|
||
|
|
||
|
outputs = {
|
||
|
self,
|
||
|
nixpkgs,
|
||
|
}: let
|
||
|
inherit (nixpkgs.lib) genAttrs makeBinPath;
|
||
|
eachSystem = fn:
|
||
|
genAttrs [ "x86_64-linux" ]
|
||
|
(system: fn nixpkgs.legacyPackages.${system});
|
||
|
in {
|
||
|
devShells = eachSystem (_: pkgs: {
|
||
|
default = pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [nim openssl];
|
||
|
};
|
||
|
});
|
||
|
};
|
||
|
}
|