mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 15:56:50 +01:00
Merge pull request #137407 from SuperSandro2000/gofu
This commit is contained in:
commit
c78df44cfb
2 changed files with 26 additions and 0 deletions
24
pkgs/applications/misc/gofu/default.nix
Normal file
24
pkgs/applications/misc/gofu/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "gofu";
|
||||
version = "unstable-2021-09-11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "majewsky";
|
||||
repo = pname;
|
||||
rev = "cb398f58a5cb4f3e858fe60e84debde6ab58f7c8";
|
||||
sha256 = "sha256-R8Pr8SyLeoTaYKKV+PzHDPi1/RY4j7pkUbW8kE4ydBU=";
|
||||
};
|
||||
|
||||
vendorSha256 = null;
|
||||
|
||||
subPackages = [ "." ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Multibinary containing several utilities";
|
||||
homepage = "https://github.com/majewsky/gofu";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ SuperSandro2000 ];
|
||||
};
|
||||
}
|
|
@ -895,6 +895,8 @@ with pkgs;
|
|||
|
||||
gobgp = callPackage ../tools/networking/gobgp { };
|
||||
|
||||
gofu = callPackage ../applications/misc/gofu { };
|
||||
|
||||
metapixel = callPackage ../tools/graphics/metapixel { };
|
||||
|
||||
pferd = callPackage ../tools/misc/pferd {};
|
||||
|
|
Loading…
Reference in a new issue