summary refs log tree commit diff
path: root/pkgs/tools/misc/up/default.nix
blob: c09c5ad12f0801006c359b73448eff9e0b4948f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "up-${version}";
  version = "0.3.1";

  src = fetchFromGitHub {
    owner = "akavel";
    repo = "up";
    rev = "v${version}";
    sha256 = "171bwbk2c7jbi51xdawzv7qy71492mfs9z5j0a5j52qmnr4vjjgs";
  };

  goPackagePath = "github.com/akavel/up";
  goDeps = ./deps.nix;

  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;
  };
}