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";
|
2019-05-11 01:58:15 -07:00
|
|
|
version = "0.3.2";
|
2018-11-09 05:14:39 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "akavel";
|
|
|
|
repo = "up";
|
|
|
|
rev = "v${version}";
|
2019-05-11 01:58:15 -07:00
|
|
|
sha256 = "1psixyymk98z52yy92lwb75yfins45dw6rif9cxwd7yiascwg2if";
|
2018-11-09 05:14:39 -08:00
|
|
|
};
|
|
|
|
|
2019-05-12 02:24:00 -07:00
|
|
|
modSha256 = "0nfs190rzabphhhyacypz3ic5c4ajlqpx9jiiincs0vxfkmfwnjd";
|
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;
|
|
|
|
};
|
|
|
|
}
|