about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/gofu/default.nix
blob: b951a3e482511c89e41d6d5c576f07bd0907b108 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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 ];
  };
}