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

23 lines
577 B
Nix
Raw Normal View History

2018-02-03 21:52:20 +00:00
{ stdenv, fetchFromGitHub, buildGoPackage }:
2019-08-13 21:52:01 +00:00
buildGoPackage {
2018-12-07 14:33:18 +00:00
version = "0.5.1";
pname = "grobi";
2018-02-03 21:52:20 +00:00
goPackagePath = "github.com/fd0/grobi";
src = fetchFromGitHub {
2018-12-07 14:33:18 +00:00
rev = "5ddc167b9e4f84755a515828360abda15c54b7de";
2018-02-03 21:52:20 +00:00
owner = "fd0";
repo = "grobi";
2018-12-07 14:33:18 +00:00
sha256 = "0iyxidq60pf6ki52f8fffplf10nl8w9jx1b7igg98csnc6iqxh89";
2018-02-03 21:52:20 +00:00
};
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;
};
}