Merge pull request #329823 from ExpidusOS/fix/pkgsllvm/elfutils
[NixPkgs.git] / pkgs / by-name / up / ups / package.nix
blobbfd743a8236d60fe0dd4ae2a9b5733b926dfa028
1 { buildGoModule
2 , fetchFromGitHub
3 , lib
4 }:
5 buildGoModule rec {
6   pname = "ups";
7   version = "0.2.1";
9   src = fetchFromGitHub {
10     owner = "rameshvarun";
11     repo = "ups";
12     rev = "v${version}";
13     sha256 = "sha256-7AuZ1gyp8tAWHM0Ry54tKucPJ3enaGDtvrM1J8uBIT8=";
14   };
16   vendorHash = "sha256-c6aE6iD6yCnnuSEDhhr3v1ArcfLmSP8QhS7Cz7rtVHs=";
18   meta = with lib; {
19     description = "Command line tool for creating and applying UPS patch files";
20     homepage = "https://github.com/rameshvarun/ups";
21     license = licenses.mit;
22     maintainers = with maintainers; [ ruby0b ];
23   };