nixpkgs/pkgs/tools/X11/grobi/default.nix

23 lines
582 B
Nix
Raw Normal View History

2020-08-09 19:53:11 +00:00
{ stdenv, fetchFromGitHub, buildGoModule }:
2018-02-03 21:52:20 +00:00
2020-08-09 19:53:11 +00:00
buildGoModule rec {
version = "0.6.0";
pname = "grobi";
2018-02-03 21:52:20 +00:00
src = fetchFromGitHub {
2020-08-09 19:53:11 +00:00
rev = "v${version}";
2018-02-03 21:52:20 +00:00
owner = "fd0";
repo = "grobi";
2020-08-09 19:53:11 +00:00
sha256 = "032lvnl2qq9258y6q1p60lfi7qir68zgq8zyh4khszd3wdih7y3s";
2018-02-03 21:52:20 +00:00
};
2020-08-09 19:53:11 +00:00
vendorSha256 = "1ibwx5rbxkygfx78j3g364dmbwwa5b34qmzq3sqcbrsnv8rzrwvj";
meta = with stdenv.lib; {
homepage = "https://github.com/fd0/grobi";
2018-02-03 21:52:20 +00:00
description = "Automatically configure monitors/outputs for Xorg via RANDR";
license = with licenses; [ bsd2 ];
platforms = platforms.linux;
};
}