phd2: 2.6.9dev1 -> 2.6.10

This commit is contained in:
Hunter Jones 2021-06-30 01:18:38 -05:00 committed by Jonathan Ringer
parent 1b98bbf304
commit ef892b0a92

View file

@ -1,19 +1,32 @@
{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, gtk3, wxGTK30-gtk3,
curl, gettext, glib, indi-full, libnova, wrapGAppsHook }:
{ lib, stdenv, fetchFromGitHub, pkg-config, cmake, gtk3, wxGTK30-gtk3
, curl, gettext, glib, indi-full, libnova, wrapGAppsHook }:
stdenv.mkDerivation rec {
pname = "phd2";
version = "2.6.9dev1";
version = "2.6.10";
src = fetchFromGitHub {
owner = "OpenPHDGuiding";
repo = "phd2";
rev = "v${version}";
sha256 = "1ih7m9lilh12xbhmwm9kkicaqy72mi3firl6df7m5x38n2zj3zm4";
sha256 = "sha256-2ZiPjhlguWXFcC53xG1aqAode7twtoHWszFUMQkK5xU=";
};
nativeBuildInputs = [ cmake pkg-config wrapGAppsHook ];
buildInputs = [ gtk3 wxGTK30-gtk3 curl gettext glib indi-full libnova ];
nativeBuildInputs = [
cmake
pkg-config
wrapGAppsHook
];
buildInputs = [
gtk3
wxGTK30-gtk3
curl
gettext
glib
indi-full
libnova
];
cmakeFlags = [
"-DOPENSOURCE_ONLY=1"
@ -27,8 +40,9 @@ stdenv.mkDerivation rec {
meta = with lib; {
homepage = "https://openphdguiding.org/";
description = "Telescope auto-guidance application";
changelog = "https://github.com/OpenPHDGuiding/phd2/releases/tag/v${version}";
license = licenses.bsd3;
maintainers = with maintainers; [ hjones2199 ];
platforms = [ "x86_64-linux" ];
platforms = platforms.linux;
};
}