zig: commonify & bootstrap (#331011)
[NixPkgs.git] / pkgs / by-name / up / ups / package.nix
blobf563ea93a17008c4530ba9f0622f6be6c62f7150
2   buildGoModule,
3   fetchFromGitHub,
4   lib,
5 }:
6 buildGoModule rec {
7   pname = "ups";
8   version = "0.2.1";
10   src = fetchFromGitHub {
11     owner = "rameshvarun";
12     repo = "ups";
13     rev = "v${version}";
14     hash = "sha256-7AuZ1gyp8tAWHM0Ry54tKucPJ3enaGDtvrM1J8uBIT8=";
15   };
17   vendorHash = "sha256-c6aE6iD6yCnnuSEDhhr3v1ArcfLmSP8QhS7Cz7rtVHs=";
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   };