biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / radio / grig / default.nix
blobb288317c03c7b4c6ff83cfe2f587b041178f77ce
1 { lib
2 , stdenv
3 , fetchFromGitHub
4 , autoreconfHook
5 , pkg-config
6 , wrapGAppsHook
7 , gtk2
8 , hamlib_4 }:
10 stdenv.mkDerivation rec {
11   pname = "grig";
12   version = "0.9.0";
14   src = fetchFromGitHub {
15     owner = "fillods";
16     repo = "grig";
17     rev = "GRIG-${lib.replaceStrings ["."] ["_"] version}";
18     sha256 = "sha256-OgIgHW9NMW/xSSti3naIR8AQWUtNSv5bYdOcObStBlM=";
19   };
21   nativeBuildInputs = [ autoreconfHook pkg-config wrapGAppsHook ];
22   buildInputs = [ hamlib_4 gtk2 ];
24   meta = with lib; {
25     description = "A simple Ham Radio control (CAT) program based on Hamlib";
26     mainProgram = "grig";
27     longDescription = ''
28       Grig is a graphical user interface for the Ham Radio Control Libraries.
29       It is intended to be simple and generic, presenting the user with the
30       same interface regardless of which radio they use.
31     '';
32     homepage = "https://groundstation.sourceforge.net/grig/";
33     license = licenses.gpl2;
34     platforms = platforms.linux;
35     maintainers = with maintainers; [ melling ];
36   };