Skip to content

Commit

Permalink
ks: init at 0.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankovnatsky committed May 21, 2024
1 parent ff8aa8b commit 7c2aeeb
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions pkgs/by-name/ks/ks/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{ stdenv
, lib
, fetchFromGitHub
}:

stdenv.mkDerivation (finalAttrs: {
pname = "ks";
version = "0.4.0";

src = fetchFromGitHub {
owner = "loteoo";
repo = "ks";
rev = "${finalAttrs.version}";
hash = "sha256-jGo0u0wiwOc2n8x0rvDIg1suu6vJQ5UCfslYD5vUlyI=";
};

installPhase = ''
mkdir -p $out/bin
cp ${finalAttrs.pname} $out/bin/
'';

meta = {
mainProgram = "ks";
homepage = "https://github.com/loteoo/ks";
description = "Command-line secrets manager powered by macOS keychains";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ ivankovnatsky ];
platforms = lib.platforms.darwin;
};
})

0 comments on commit 7c2aeeb

Please sign in to comment.