mirror of
https://github.com/davegallant/nix-config
synced 2025-08-08 05:52:28 +00:00
Use vendorHash instead of vendorSha256 and remove yar
This commit is contained in:
@@ -2,5 +2,4 @@ final: prev: {
|
||||
rfd = prev.callPackage ./rfd {};
|
||||
tmux-sessionizer = prev.callPackage ./tmux-sessionizer {};
|
||||
vpngate = prev.callPackage ./vpngate {};
|
||||
yar = prev.callPackage ./yar {};
|
||||
}
|
||||
|
@@ -7,7 +7,7 @@ buildGoModule rec {
|
||||
pname = "vpngate";
|
||||
version = "v0.1.5";
|
||||
|
||||
vendorSha256 = "sha256-TQLHvoVAMvDtm/9EQUaNVVjQajyMBnJu8NF6Kt0+RJ8=";
|
||||
vendorHash = "sha256-TQLHvoVAMvDtm/9EQUaNVVjQajyMBnJu8NF6Kt0+RJ8=";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "davegallant";
|
||||
|
@@ -1,25 +0,0 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
buildGoModule,
|
||||
}:
|
||||
buildGoModule rec {
|
||||
pname = "yar";
|
||||
version = "master";
|
||||
|
||||
vendorSha256 = "sha256-bBaAP9HQ1fG6gPtoYg9HXnv53DueAFnT4OHE4rwlxvA=";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nielsing";
|
||||
repo = "yar";
|
||||
rev = version;
|
||||
sha256 = "sha256-f7pTS5Ur8ImbIkPkyunyQEgpeF79CIQFEodg69VxA9I=";
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
description = "Yar is a tool for plunderin' organizations, users and/or repositories.";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [davegallant];
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user