aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlex Auvolat <alex@adnab.me>2022-12-01 22:42:31 +0100
committerAlex Auvolat <alex@adnab.me>2022-12-01 22:43:06 +0100
commit9cab98d2cee386ece54b000bbdf2346da8b55eed (patch)
tree648e66a1e0aab18ff79fdb023c210333c025f906
parentde71260bbfbde953b2293bb0333dad0d5f9328cb (diff)
downloadbottin-9cab98d2cee386ece54b000bbdf2346da8b55eed.tar.gz
bottin-9cab98d2cee386ece54b000bbdf2346da8b55eed.zip
Set correct package path
-rw-r--r--flake.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/flake.nix b/flake.nix
index d4a4a28..c87af96 100644
--- a/flake.nix
+++ b/flake.nix
@@ -1,5 +1,5 @@
{
- description = "Bottin is a LDAP server that uses Consul's key-value store as a storage backend";
+ description = "A cloud-native LDAP server backed by a Consul datastore";
inputs.nixpkgs.url = "github:nixos/nixpkgs/0244e143dc943bcf661fdaf581f01eb0f5000fcf";
inputs.gomod2nix.url = "github:tweag/gomod2nix/40d32f82fc60d66402eb0972e6e368aeab3faf58";
@@ -15,7 +15,7 @@
];
};
bottin = pkgs.gomod.buildGoApplication {
- pname = "bottin-bin";
+ pname = "bottin";
version = "0.1.0";
src = builtins.filterSource
(path: type: (builtins.match ".*/test/.*\\.(go|sum|mod)" path) == null)