add strongbox

This commit is contained in:
2023-09-29 12:00:47 +02:00
parent d665c931d3
commit 7807c9b817
3 changed files with 16 additions and 1 deletions

View File

@@ -0,0 +1,14 @@
{ lib, stdenv, ... }:
stdenv.mkDerivation {
name = "strongbox";
src = fetchurl {
url = "https://github.com/ogri-la/strongbox/releases/download/${version}/strongbox"
};
installPhase = ''
chmod +x strongbox
install -D --target $out/bin *
'';
}