forked from mirrors/nixpkgs
grobi: init at 0.3.0
This commit is contained in:
parent
e193d8674b
commit
32d4b018a7
22
pkgs/tools/X11/grobi/default.nix
Normal file
22
pkgs/tools/X11/grobi/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue