forked from mirrors/nixpkgs
bac4d95aa2
Lots of URLs were HTTP redirect to HTTPS. Changed those and checked them if there's actual content. Inspired by https://github.com/NixOS/nixpkgs/issues/60004
37 lines
870 B
Nix
37 lines
870 B
Nix
{ stdenv, lib, fetchFromGitHub, makeWrapper, git, gnupg, gawk }:
|
|
|
|
let
|
|
version = "0.2.5";
|
|
repo = "git-secret";
|
|
|
|
in stdenv.mkDerivation {
|
|
name = "${repo}-${version}";
|
|
|
|
src = fetchFromGitHub {
|
|
inherit repo;
|
|
owner = "sobolevn";
|
|
rev = "v${version}";
|
|
sha256 = "1caxdx1ps662vfa79f7l1bwgwgwf974ahzii0hzaqfnkxy45i520";
|
|
};
|
|
|
|
buildInputs = [ makeWrapper ];
|
|
|
|
installPhase = ''
|
|
install -D git-secret $out/bin/git-secret
|
|
|
|
wrapProgram $out/bin/git-secret \
|
|
--prefix PATH : "${lib.makeBinPath [ git gnupg gawk ]}"
|
|
|
|
mkdir $out/share
|
|
cp -r man $out/share
|
|
'';
|
|
|
|
meta = {
|
|
description = "A bash-tool to store your private data inside a git repository";
|
|
homepage = https://git-secret.io;
|
|
license = stdenv.lib.licenses.mit;
|
|
maintainers = [ stdenv.lib.maintainers.lo1tuma ];
|
|
platforms = stdenv.lib.platforms.all;
|
|
};
|
|
}
|