mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
gpredict: Added hamlib to buildInputs to control radios, and wrapped with wrapGAppsHook to fix gnome errors
This commit is contained in:
parent
e6b678437b
commit
30ba063dc3
@ -1,5 +1,6 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, intltool
|
{ stdenv, fetchurl, pkgconfig, intltool
|
||||||
, gtk3, glib, curl, goocanvas2, gpsd
|
, gtk3, glib, curl, goocanvas2, gpsd
|
||||||
|
, hamlib, wrapGAppsHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
@ -12,8 +13,8 @@ in stdenv.mkDerivation {
|
|||||||
sha256 = "0hwf97kng1zy8rxyglw04x89p0bg07zq30hgghm20yxiw2xc8ng7";
|
sha256 = "0hwf97kng1zy8rxyglw04x89p0bg07zq30hgghm20yxiw2xc8ng7";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkgconfig intltool ];
|
nativeBuildInputs = [ pkgconfig intltool wrapGAppsHook ];
|
||||||
buildInputs = [ curl glib gtk3 goocanvas2 gpsd ];
|
buildInputs = [ curl glib gtk3 goocanvas2 gpsd hamlib ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Real time satellite tracking and orbit prediction";
|
description = "Real time satellite tracking and orbit prediction";
|
||||||
@ -27,6 +28,6 @@ in stdenv.mkDerivation {
|
|||||||
license = licenses.gpl2;
|
license = licenses.gpl2;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
homepage = http://gpredict.oz9aec.net/;
|
homepage = http://gpredict.oz9aec.net/;
|
||||||
maintainers = [ maintainers.markuskowa ];
|
maintainers = [ maintainers.markuskowa maintainers.cmcdragonkai ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user