mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-15 08:34:04 +00:00
![Jörg Thalheim](/assets/img/avatar_default.png)
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
31 lines
730 B
Nix
31 lines
730 B
Nix
{ lib, buildGoModule, fetchFromGitHub, testers, gosu }:
|
|
|
|
buildGoModule rec {
|
|
pname = "gosu";
|
|
version = "1.17";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tianon";
|
|
repo = "gosu";
|
|
rev = version;
|
|
hash = "sha256-ziviUXqCpCGECewyZNLDKSjnpmz/3i5DKrIKZlLwl4o=";
|
|
};
|
|
|
|
vendorHash = "sha256-fygLYSO0kpMFJd6WQp/uLYkELkyaOPZ9V8BrJcIcMuU=";
|
|
|
|
ldflags = [ "-d" "-s" "-w" ];
|
|
|
|
passthru.tests.version = testers.testVersion {
|
|
package = gosu;
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Tool that avoids TTY and signal-forwarding behavior of sudo and su";
|
|
mainProgram = "gosu";
|
|
homepage = "https://github.com/tianon/gosu";
|
|
license = licenses.asl20;
|
|
maintainers = [ ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|