2020-04-24 23:36:52 +00:00
|
|
|
{ lib, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "up";
|
2020-11-03 02:18:15 +00:00
|
|
|
version = "0.4";
|
2020-05-15 21:57:56 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "akavel";
|
|
|
|
repo = "up";
|
|
|
|
rev = "v${version}";
|
2020-11-03 02:18:15 +00:00
|
|
|
sha256 = "1j8fi14fiwjscfzdfjqxgavjadwvcm5mqr8fb7hx3jmxs4kl58bp";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2020-11-03 02:18:15 +00:00
|
|
|
vendorSha256 = "1q8wfsfl3rz698ck5q5s5z6iw9k134fxxvwipcp2b052n998rcrx";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Ultimate Plumber is a tool for writing Linux pipes with instant live preview";
|
|
|
|
homepage = "https://github.com/akavel/up";
|
|
|
|
maintainers = with maintainers; [ ma27 ];
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
2020-08-20 17:08:02 +00:00
|
|
|
}
|