about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/X11/grobi/default.nix
blob: 1a7fc91311e5d3d66e8b492a20320792cd176aa3 (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 rec {
  version = "0.5.1";
  name = "grobi-${version}";

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