802ea37863
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/git-secret/versions. These checks were done: - built on NixOS - /nix/store/rhxzf1mc0jz2m3rp0rg5wqn81ykfshay-git-secret-0.2.4/bin/git-secret passed the binary check. - /nix/store/rhxzf1mc0jz2m3rp0rg5wqn81ykfshay-git-secret-0.2.4/bin/.git-secret-wrapped passed the binary check. - 2 of 2 passed binary check by having a zero exit code. - 1 of 2 passed binary check by having the new version present in output. - found 0.2.4 with grep in /nix/store/rhxzf1mc0jz2m3rp0rg5wqn81ykfshay-git-secret-0.2.4 - directory tree listing: https://gist.github.com/d460daac78bbcef226d1fff7918d150d - du listing: https://gist.github.com/ea683543c922a9c179a97faf441a1797
37 lines
858 B
Nix
37 lines
858 B
Nix
{ stdenv, lib, fetchFromGitHub, makeWrapper, git, gnupg }:
|
|
|
|
let
|
|
version = "0.2.4";
|
|
repo = "git-secret";
|
|
|
|
in stdenv.mkDerivation {
|
|
name = "${repo}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit repo;
|
|
owner = "sobolevn";
|
|
rev = "v${version}";
|
|
sha256 = "0lx2rjyhy3xh6ik755lbbl40v7a7ayyqk68jj8mnv42f2vhd66xl";
|
|
};
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
install -D git-secret $out/bin/git-secret
|
|
|
|
wrapProgram $out/bin/git-secret \
|
|
--prefix PATH : "${lib.makeBinPath [ git gnupg ]}"
|
|
|
|
mkdir $out/share
|
|
cp -r man $out/share
|
|
'';
|
|
|
|
meta = {
|
|
description = "A bash-tool to store your private data inside a git repository";
|
|
homepage = http://git-secret.io;
|
|
license = stdenv.lib.licenses.mit;
|
|
maintainers = [ stdenv.lib.maintainers.lo1tuma ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|