Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

pxview: drop

awwpotato 1cd76fbd e7b96066

+1 -39
-39
pkgs/by-name/px/pxview/package.nix
··· 1 - { 2 - lib, 3 - stdenv, 4 - fetchurl, 5 - pkg-config, 6 - perl, 7 - perlPackages, 8 - pxlib, 9 - }: 10 - 11 - stdenv.mkDerivation rec { 12 - pname = "pxview"; 13 - version = "0.2.5"; 14 - src = fetchurl { 15 - url = "mirror://sourceforge/pxlib/${pname}_${version}.orig.tar.gz"; 16 - sha256 = "1kpdqs6lvnyj02v9fbz1s427yqhgrxp7zw63rzfgiwd4iqp75139"; 17 - }; 18 - 19 - buildInputs = [ 20 - pxlib 21 - perl 22 - ] ++ (with perlPackages; [ libxml_perl ]); 23 - nativeBuildInputs = [ pkg-config ]; 24 - 25 - configureFlags = [ "--with-pxlib=${pxlib.out}" ]; 26 - 27 - # https://sourceforge.net/p/pxlib/bugs/12/ 28 - LDFLAGS = "-lm"; 29 - hardeningDisable = [ "format" ]; 30 - 31 - meta = with lib; { 32 - description = "Program to convert Paradox databases"; 33 - mainProgram = "pxview"; 34 - homepage = "https://pxlib.sourceforge.net/pxview/"; 35 - license = licenses.gpl2; 36 - platforms = platforms.linux; 37 - maintainers = [ maintainers.winpat ]; 38 - }; 39 - }
+1
pkgs/top-level/aliases.nix
··· 1510 1510 psensor = throw "'psensor' has been removed due to lack of maintenance upstream. Consider using 'mission-center', 'resources' or 'monitorets' instead"; # Added 2024-09-14 1511 1511 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 1512 1512 pxlib = throw "pxlib has been removed due to failing to build and lack of upstream maintenance"; # Added 2025-04-28 1513 + pxview = throw "pxview has been removed due to failing to build and lack of upstream maintenance"; # Added 2025-04-28 1513 1514 pynac = throw "'pynac' has been removed as it was broken and unmaintained"; # Added 2025-03-18 1514 1515 pyo3-pack = maturin; 1515 1516 pypi2nix = throw "pypi2nix has been removed due to being unmaintained";