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
|
|
|
|
|
|
|
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
|
|
|
};
|
|
|
|
|
2019-05-12 10:24:00 +01:00
|
|
|
modSha256 = "0nfs190rzabphhhyacypz3ic5c4ajlqpx9jiiincs0vxfkmfwnjd";
|
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";
|
|
|
|
homepage = https://github.com/akavel/up;
|
|
|
|
maintainers = with maintainers; [ ma27 ];
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|