nix-search: init at 0.4.0
Description: Nix-channel-compatible package search Homepage: https://github.com/diamondburned/nix-search
This commit is contained in:
parent
a2798f01e2
commit
ca7cf82853
36
pkgs/by-name/ni/nix-search/package.nix
Normal file
36
pkgs/by-name/ni/nix-search/package.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{
|
||||
lib,
|
||||
buildGoModule,
|
||||
fetchFromGitHub,
|
||||
nix-update-script,
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "nix-search";
|
||||
version = "0.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "diamondburned";
|
||||
repo = "nix-search";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-dOdcXKfSwi0THOjtgP3O/46SWoUY+T7LL9nGwOXXJfw=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-bModWDH5Htl5rZthtk/UTw/PXT+LrgyBjsvE6hgIePY=";
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
];
|
||||
|
||||
passthru.updateScript = nix-update-script { };
|
||||
|
||||
meta = {
|
||||
description = "Nix-channel-compatible package search";
|
||||
homepage = "https://github.com/diamondburned/nix-search";
|
||||
license = lib.licenses.gpl3Only;
|
||||
mainProgram = "nix-search";
|
||||
maintainers = with lib.maintainers; [ azuwis ];
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user