Unverified Commit f54c4aa8 authored by Pol Dellaiera's avatar Pol Dellaiera Committed by GitHub
Browse files

pxlib: drop (#402697)

parents 21052db9 1cd76fbd
Loading
Loading
Loading
Loading

pkgs/by-name/px/pxlib/package.nix

deleted100644 → 0
+0 −25
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchurl,
  intltool,
}:

stdenv.mkDerivation rec {
  pname = "pxlib";
  version = "0.6.8";
  src = fetchurl {
    url = "mirror://sourceforge/${pname}/${pname}-${version}.tar.gz";
    sha256 = "1yafwz4z5h30hqvk51wpgbjlmq9f2z2znvfim87ydrfrqfjmi6sz";
  };

  nativeBuildInputs = [ intltool ];

  meta = with lib; {
    description = "Library to read and write Paradox files";
    homepage = "https://pxlib.sourceforge.net/";
    license = licenses.gpl2;
    platforms = platforms.all;
    maintainers = [ maintainers.winpat ];
  };
}
+0 −39
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchurl,
  pkg-config,
  perl,
  perlPackages,
  pxlib,
}:

stdenv.mkDerivation rec {
  pname = "pxview";
  version = "0.2.5";
  src = fetchurl {
    url = "mirror://sourceforge/pxlib/${pname}_${version}.orig.tar.gz";
    sha256 = "1kpdqs6lvnyj02v9fbz1s427yqhgrxp7zw63rzfgiwd4iqp75139";
  };

  buildInputs = [
    pxlib
    perl
  ] ++ (with perlPackages; [ libxml_perl ]);
  nativeBuildInputs = [ pkg-config ];

  configureFlags = [ "--with-pxlib=${pxlib.out}" ];

  # https://sourceforge.net/p/pxlib/bugs/12/
  LDFLAGS = "-lm";
  hardeningDisable = [ "format" ];

  meta = with lib; {
    description = "Program to convert Paradox databases";
    mainProgram = "pxview";
    homepage = "https://pxlib.sourceforge.net/pxview/";
    license = licenses.gpl2;
    platforms = platforms.linux;
    maintainers = [ maintainers.winpat ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -1510,6 +1510,8 @@ mapAliases {
  proxmark3-rrg = proxmark3; # Added 2023-07-25
  psensor = throw "'psensor' has been removed due to lack of maintenance upstream. Consider using 'mission-center', 'resources' or 'monitorets' instead"; # Added 2024-09-14
  pwndbg = throw "'pwndbg' has been removed due to dependency version incompatibilities that are infeasible to maintain in nixpkgs. Use the downstream flake that pwndbg provides instead: https://github.com/pwndbg/pwndbg"; # Added 2025-02-09
  pxlib = throw "pxlib has been removed due to failing to build and lack of upstream maintenance"; # Added 2025-04-28
  pxview = throw "pxview has been removed due to failing to build and lack of upstream maintenance"; # Added 2025-04-28
  pynac = throw "'pynac' has been removed as it was broken and unmaintained"; # Added 2025-03-18
  pyo3-pack = maturin;
  pypi2nix = throw "pypi2nix has been removed due to being unmaintained";