all repos — elgit @ 02471538df23632b94c811e8ddb139d5ee0da897

fork of legit: web frontend for git, written in go

reduce directory nesting

Alan Pearce
commit

02471538df23632b94c811e8ddb139d5ee0da897

parent

f41c7baefd86bf8db0e5f096c449997d9427f813

2 files changed, 3 insertions(+), 3 deletions(-)

changed files
M flake.nixflake.nix
@@ -20,7 +20,7 @@ let
pkgs = nixpkgs.legacyPackages.${system}; in { - packages.default = pkgs.callPackage ./nix/package { + packages.default = pkgs.callPackage ./nix/pkg.nix { inherit (gomod2nix.legacyPackages.${system}) buildGoApplication; }; devShells.default = pkgs.callPackage ./nix/shell.nix {
M nix/package/default.nixnix/pkg.nix
@@ -19,8 +19,8 @@ buildGoApplication {
pname = "elgit"; version = "0.1"; - src = ../..; - modules = ../gomod2nix.toml; + src = ../.; + modules = ./gomod2nix.toml; passthru.tests = { inherit (nixosTests) legit; };