mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 15:22:59 +01:00
gpredict: 1.3 → 2.2.1
This commit is contained in:
parent
82653d9ca0
commit
c65cd765f6
1 changed files with 8 additions and 9 deletions
|
@ -1,20 +1,19 @@
|
|||
{ stdenv, fetchurl, pkgconfig
|
||||
, gtk2-x11, glib, curl, goocanvas, intltool
|
||||
{ stdenv, fetchurl, pkgconfig, intltool
|
||||
, gtk3, glib, curl, goocanvas2, gpsd
|
||||
}:
|
||||
|
||||
let
|
||||
version = "1.3";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
version = "2.2.1";
|
||||
in stdenv.mkDerivation {
|
||||
name = "gpredict-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://sourceforge.net/projects/gpredict/files/Gpredict/${version}/gpredict-${version}.tar.gz";
|
||||
sha256 = "18ym71r2f5mwpnjcnrpwrk3py2f6jlqmj8hzp89wbcm1ipnvxxmh";
|
||||
url = "https://github.com/csete/gpredict/releases/download/v${version}/gpredict-${version}.tar.bz2";
|
||||
sha256 = "0hwf97kng1zy8rxyglw04x89p0bg07zq30hgghm20yxiw2xc8ng7";
|
||||
};
|
||||
|
||||
buildInputs = [ curl glib gtk2-x11 goocanvas ];
|
||||
nativeBuildInputs = [ pkgconfig intltool ];
|
||||
buildInputs = [ curl glib gtk3 goocanvas2 gpsd ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Real time satellite tracking and orbit prediction";
|
||||
|
@ -27,7 +26,7 @@ stdenv.mkDerivation {
|
|||
'';
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
homepage = "https://sourceforge.net/projects/gpredict/";
|
||||
homepage = http://gpredict.oz9aec.net/;
|
||||
maintainers = [ maintainers.markuskowa ];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue