mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
3dfsb: Remove package
Package is broken, old and not easily fixable. See #12397.
This commit is contained in:
parent
ba4b4752f2
commit
0f107fcb67
@ -1,34 +0,0 @@
|
||||
{ stdenv, makeWrapper, glibc, fetchgit, pkgconfig, SDL, SDL_image, SDL_stretch,
|
||||
mesa, mesa_glu, freeglut, gst_all_1, gtk2, file, imagemagick }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "3dfsb-1.0";
|
||||
|
||||
broken = true; # segfaults as of this commit
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "3D File System Browser - cleaned up and improved fork of the old tdfsb which runs on GNU/Linux and should also run on BeOS/Haiku and FreeBSD";
|
||||
homepage = "https://github.com/tomvanbraeckel/3dfsb";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ ];
|
||||
};
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://github.com/tomvanbraeckel/3dfsb.git";
|
||||
rev = "a69a9dfad42acbe2816328d11b58b65f4186c4c5";
|
||||
sha256 = "191ndg4vfanjfx4qh186sszyy4pphx3l41rchins9mg8y5rm5ffp";
|
||||
};
|
||||
|
||||
buildInputs = with gst_all_1; [ makeWrapper glibc pkgconfig SDL SDL_image SDL_stretch mesa_glu freeglut gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad gst-plugins-ugly gst-libav gtk2 file imagemagick ];
|
||||
|
||||
buildPhase = "sh ./compile.sh";
|
||||
dontStrip = true;
|
||||
|
||||
installPhase = "mkdir -p $out/bin/ && cp 3dfsb $out/bin/";
|
||||
|
||||
preFixup = ''
|
||||
wrapProgram $out/bin/3dfsb \
|
||||
--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0" \
|
||||
'';
|
||||
}
|
@ -475,10 +475,6 @@ let
|
||||
|
||||
_9pfs = callPackage ../tools/filesystems/9pfs { };
|
||||
|
||||
"3dfsb" = callPackage ../applications/misc/3dfsb {
|
||||
glibc = glibc.override { debugSymbols = true; };
|
||||
};
|
||||
|
||||
a2ps = callPackage ../tools/text/a2ps { };
|
||||
|
||||
abduco = callPackage ../tools/misc/abduco { };
|
||||
|
Loading…
Reference in New Issue
Block a user