depot/third_party/nixpkgs/pkgs/by-name/up/ups/package.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

24 lines
579 B
Nix

{ buildGoModule
, fetchFromGitHub
, lib
}:
buildGoModule rec {
pname = "ups";
version = "0.2.1";
src = fetchFromGitHub {
owner = "rameshvarun";
repo = "ups";
rev = "v${version}";
hash = "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 ];
};
}