2019-05-12 10:24:00 +01:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
2018-11-09 13:14:39 +00:00
|
|
|
|
2019-05-12 10:24:00 +01:00
|
|
|
buildGoModule rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "up";
|
2019-05-11 09:58:15 +01:00
|
|
|
version = "0.3.2";
|
2018-11-09 13:14:39 +00:00
|
|
|
|
2020-05-01 02:59:00 +01:00
|
|
|
patches = [ ./gomod.patch ];
|
|
|
|
|
2018-11-09 13:14:39 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "akavel";
|
|
|
|
repo = "up";
|
|
|
|
rev = "v${version}";
|
2019-05-11 09:58:15 +01:00
|
|
|
sha256 = "1psixyymk98z52yy92lwb75yfins45dw6rif9cxwd7yiascwg2if";
|
2018-11-09 13:14:39 +00:00
|
|
|
};
|
|
|
|
|
2020-05-01 02:59:00 +01:00
|
|
|
vendorSha256 = "1h3w4i7dyh6yagqmdclvflfq6fx0z880jdnpf28assv7fxd9rjsx";
|
2018-11-09 13:14:39 +00:00
|
|
|
|
2020-08-04 01:26:27 +01:00
|
|
|
doCheck = false;
|
|
|
|
|
2018-11-09 13:14:39 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Ultimate Plumber is a tool for writing Linux pipes with instant live preview";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/akavel/up";
|
2018-11-09 13:14:39 +00:00
|
|
|
maintainers = with maintainers; [ ma27 ];
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
2020-07-31 04:58:04 +01:00
|
|
|
}
|