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

buildGoPackage {
  version = "0.5.1";
  pname = "grobi";

  goPackagePath = "github.com/fd0/grobi";

  src = fetchFromGitHub {
    rev = "5ddc167b9e4f84755a515828360abda15c54b7de";
    owner = "fd0";
    repo = "grobi";
    sha256 = "0iyxidq60pf6ki52f8fffplf10nl8w9jx1b7igg98csnc6iqxh89";
  };

   meta = with stdenv.lib; {
    homepage = "https://github.com/fd0/grobi";
    description = "Automatically configure monitors/outputs for Xorg via RANDR";
    license = with licenses; [ bsd2 ];
    platforms   = platforms.linux;
  };
}