Merge pull request #34567 from holidaycheck/add-grobi

grobi: init at 0.3.0
This commit is contained in:
Frederik Rietdijk 2018-02-04 08:04:42 +00:00 committed by GitHub
commit 7e0b231b53
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 24 additions and 0 deletions

View file

@ -0,0 +1,22 @@
{ stdenv, fetchFromGitHub, buildGoPackage }:
buildGoPackage rec {
version = "0.3.0";
name = "grobi-${version}";
goPackagePath = "github.com/fd0/grobi";
src = fetchFromGitHub {
rev = "78a0639ffad765933a5233a1c94d2626e24277b8";
owner = "fd0";
repo = "grobi";
sha256 = "16q7vnhb1p6ds561832sfdszvlafww67bjn3lc0d18v7lyak2l3i";
};
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;
};
}

View file

@ -1191,6 +1191,8 @@ with pkgs;
gringo = callPackage ../tools/misc/gringo { scons = scons_2_5_1; };
grobi = callPackage ../tools/X11/grobi { };
gti = callPackage ../tools/misc/gti { };
heatseeker = callPackage ../tools/misc/heatseeker { };