ocamlPackages.hxd: 0.3.2 -> 0.3.3 (#364231)
[NixPkgs.git] / pkgs / by-name / ph / phd2 / package.nix
blob96bf387061867eb255573870728b28f97cabb1a7
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   pkg-config,
6   cmake,
7   gtk3,
8   wxGTK32,
9   curl,
10   gettext,
11   glib,
12   indi-full,
13   libnova,
14   wrapGAppsHook3,
17 stdenv.mkDerivation rec {
18   pname = "phd2";
19   version = "2.6.13";
21   src = fetchFromGitHub {
22     owner = "OpenPHDGuiding";
23     repo = "phd2";
24     rev = "v${version}";
25     sha256 = "sha256-GnT/tyk975caqESBSu4mdX5IWGi5O+RljLSd+CwoGWo=";
26   };
28   nativeBuildInputs = [
29     cmake
30     pkg-config
31     wrapGAppsHook3
32   ];
34   buildInputs = [
35     gtk3
36     wxGTK32
37     curl
38     gettext
39     glib
40     indi-full
41     libnova
42   ];
44   cmakeFlags = [
45     "-DOPENSOURCE_ONLY=1"
46   ];
48   # Fix broken wrapped name scheme by moving wrapped binary to where wrapper expects it
49   postFixup = ''
50     mv $out/bin/.phd2.bin-wrapped $out/bin/.phd2-wrapped.bin
51   '';
53   meta = with lib; {
54     homepage = "https://openphdguiding.org/";
55     description = "Telescope auto-guidance application";
56     changelog = "https://github.com/OpenPHDGuiding/phd2/releases/tag/v${version}";
57     license = licenses.bsd3;
58     maintainers = with maintainers; [ hjones2199 ];
59     platforms = platforms.linux;
60   };