From 89983f823659a15de99fcf456edfd4fd0290fb71 Mon Sep 17 00:00:00 2001 From: "Jeffrey C. Ollie" Date: Wed, 14 Feb 2024 11:51:42 -0600 Subject: [PATCH] fix scram-sha-256 main program --- flake.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 8f2b550..9b64988 100644 --- a/flake.nix +++ b/flake.nix @@ -37,9 +37,12 @@ hash = "sha256-55dEihU9FnKiGt9jRJsY1+NRUgOkwoLF8J60RRYG7yM="; }; vendorHash = "sha256-HjyD30RFf5vnZ8CNU1s3sTTyCof1yD8cdVWC7cLwjic="; + postInstall = '' + mv $out/bin/tool $out/bin/scram-sha-256 + ''; meta = with pkgs.lib; { homepage = "https://github.com/supercaracal/scram-sha-256"; - description = "A backup program that is fast, efficient and secure"; + description = "Password-encryption tool for PostgreSQL with scram-sha-256"; platforms = platforms.all; license = licenses.mit; };