nixpkgs/pkgs/tools/misc/gosu/default.nix

25 lines
602 B
Nix
Raw Normal View History

{ lib, buildGoPackage, fetchgit }:
2017-09-07 21:27:13 +01:00
buildGoPackage rec {
pname = "gosu";
2017-09-07 21:27:13 +01:00
version = "2017-05-09";
rev = "e87cf95808a7b16208515c49012aa3410bc5bba8";
goPackagePath = "github.com/tianon/gosu";
src = fetchgit {
inherit rev;
url = "https://github.com/tianon/gosu";
sha256 = "1qp1cfx0hrr4qlnh7rhjb4xlxv9697flmgzzl6jcdkrpk1f0bz8m";
};
goDeps = ./deps.nix;
meta = {
description= "Tool that avoids TTY and signal-forwarding behavior of sudo and su";
homepage = "https://github.com/tianon/gosu";
2021-01-15 09:19:50 +00:00
license = lib.licenses.gpl3;
platforms = lib.platforms.linux;
2017-09-07 21:27:13 +01:00
};
}