Nix: run formatter
This commit is contained in:
parent
fbaed2c1d6
commit
98f4e451a9
2 changed files with 6 additions and 6 deletions
|
|
@ -14,7 +14,7 @@
|
||||||
};
|
};
|
||||||
packages = rec {
|
packages = rec {
|
||||||
default = shows-api;
|
default = shows-api;
|
||||||
shows-api = pkgs.callPackage ./package.nix {};
|
shows-api = pkgs.callPackage ./package.nix { };
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
|
||||||
10
package.nix
10
package.nix
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{ lib
|
||||||
lib,
|
, buildNpmPackage
|
||||||
buildNpmPackage,
|
, nodejs
|
||||||
nodejs,
|
,
|
||||||
}:
|
}:
|
||||||
buildNpmPackage {
|
buildNpmPackage {
|
||||||
name = "shows-api";
|
name = "shows-api";
|
||||||
|
|
@ -28,7 +28,7 @@ buildNpmPackage {
|
||||||
meta = {
|
meta = {
|
||||||
description = "NestJS API to store info about shows on a MongoDB database";
|
description = "NestJS API to store info about shows on a MongoDB database";
|
||||||
homepage = "https://git.everest.tailscale/Toast/shows-api";
|
homepage = "https://git.everest.tailscale/Toast/shows-api";
|
||||||
sourceProvenance = [lib.sourceTypes.fromSource];
|
sourceProvenance = [ lib.sourceTypes.fromSource ];
|
||||||
mainProgram = "shows-api";
|
mainProgram = "shows-api";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue