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