1{
2 buildGoModule,
3 fetchFromGitHub,
4 lib,
5}:
6buildGoModule rec {
7 pname = "ups";
8 version = "0.2.1";
9
10 src = fetchFromGitHub {
11 owner = "rameshvarun";
12 repo = "ups";
13 rev = "v${version}";
14 hash = "sha256-7AuZ1gyp8tAWHM0Ry54tKucPJ3enaGDtvrM1J8uBIT8=";
15 };
16
17 vendorHash = "sha256-c6aE6iD6yCnnuSEDhhr3v1ArcfLmSP8QhS7Cz7rtVHs=";
18
19 meta = with lib; {
20 description = "Command line tool for creating and applying UPS patch files";
21 homepage = "https://github.com/rameshvarun/ups";
22 license = licenses.mit;
23 maintainers = with maintainers; [ ruby0b ];
24 };
25}