about summary refs log tree commit diff
path: root/pkgs/by-name/up/ups/package.nix
blob: bfd743a8236d60fe0dd4ae2a9b5733b926dfa028 (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
{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
  pname = "ups";
  version = "0.2.1";

  src = fetchFromGitHub {
    owner = "rameshvarun";
    repo = "ups";
    rev = "v${version}";
    sha256 = "sha256-7AuZ1gyp8tAWHM0Ry54tKucPJ3enaGDtvrM1J8uBIT8=";
  };

  vendorHash = "sha256-c6aE6iD6yCnnuSEDhhr3v1ArcfLmSP8QhS7Cz7rtVHs=";

  meta = with lib; {
    description = "Command line tool for creating and applying UPS patch files";
    homepage = "https://github.com/rameshvarun/ups";
    license = licenses.mit;
    maintainers = with maintainers; [ ruby0b ];
  };
}