ab98496d0b
This update broke gpsd because the download url changed and trying to
get version 3.10 from the old url returns an error document with a
timestamp resulting in new hashes on every build.
And more importantly, gpsd 3.10 switched to the scons build system, so
even if the download url was correct it will fail to build until the
expression is updated.
This reverts commit 3f1c26b825
.
55 lines
2 KiB
Nix
55 lines
2 KiB
Nix
{ fetchurl, stdenv, pythonPackages, pkgconfig, dbus, dbus_glib
|
|
, ncurses, libX11, libXt, libXpm, libXaw, libXext, makeWrapper
|
|
, libusb1, docbook_xml_dtd_412, docbook_xsl, bc
|
|
, libxslt, xmlto, gpsdUser ? "gpsd" }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "gpsd-2.95";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.berlios.de/gpsd/${name}.tar.gz";
|
|
sha256 = "1bjhyjg561kwp6zc2wg58njdvpnsj5yaa2slz8g3ga1176jl68w3";
|
|
};
|
|
|
|
nativeBuildInputs = [ makeWrapper pkgconfig docbook_xml_dtd_412 docbook_xsl
|
|
xmlto bc pythonPackages.wrapPython ];
|
|
|
|
pythonPath = [ pythonPackages.curses ];
|
|
|
|
buildInputs = [ pythonPackages.python dbus dbus_glib ncurses libX11 libXt
|
|
libXpm libXaw libXext libxslt libusb1 ];
|
|
|
|
configureFlags = "--enable-static --enable-dbus --enable-gpsd-user=${gpsdUser}";
|
|
|
|
doCheck = true;
|
|
|
|
postInstall = "wrapPythonPrograms";
|
|
|
|
meta = {
|
|
description = "`gpsd', a GPS service daemon";
|
|
|
|
longDescription = ''
|
|
gpsd is a service daemon that monitors one or more GPSes
|
|
attached to a host computer through serial or USB ports, making
|
|
all data on the location/course/velocity of the sensors
|
|
available to be queried on TCP port 2947 of the host computer.
|
|
With gpsd, multiple GPS client applications (such as
|
|
navigational and wardriving software) can share access to GPSes
|
|
without contention or loss of data. Also, gpsd responds to
|
|
queries with a format that is substantially easier to parse than
|
|
the NMEA 0183 emitted by most GPSes. The gpsd distribution
|
|
includes a linkable C service library, a C++ wrapper class, and
|
|
a Python module that developers of gpsd-aware applications can
|
|
use to encapsulate all communication with gpsd.
|
|
|
|
Besides gpsd itself, the project provides auxiliary tools for
|
|
diagnostic monitoring and profiling of GPSes and feeding
|
|
GPS-aware applications GPS logs for diagnostic purposes.
|
|
'';
|
|
|
|
homepage = http://gpsd.berlios.de/;
|
|
|
|
license = "BSD-style";
|
|
};
|
|
}
|