python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / applications / misc / xcruiser / default.nix
blobd57eb487817334b7279e869877d843ec5187bc01
1 { lib, stdenv, fetchurl, gccmakedep, imake, libXt, libXaw, libXpm, libXext }:
3 stdenv.mkDerivation rec {
4   pname = "xcruiser";
5   version = "0.30";
7   src = fetchurl {
8     url = "mirror://sourceforge/xcruiser/xcruiser/xcruiser-${version}/xcruiser-${version}.tar.gz";
9     sha256 = "1r8whva38xizqdh7jmn6wcmfmsndc67pkw22wzfzr6rq0vf6hywi";
10   };
12   nativeBuildInputs = [ gccmakedep imake ];
13   buildInputs = [ libXt libXaw libXpm libXext ];
15   makeFlags = [
16     "BINDIR=${placeholder "out"}/bin"
17     "CONFDIR=${placeholder "out"}/etc/X11"
18     "LIBDIR=${placeholder "out"}/lib/X11"
19     "XAPPLOADDIR=${placeholder "out"}/etc/X11/app-defaults"
20   ];
22   meta = with lib; {
23     description = "Filesystem visualization utility";
24     longDescription = ''
25       XCruiser, formerly known as XCruise, is a filesystem visualization utility.
26       It constructs a virtually 3-D formed universe from a directory
27       tree and allows you to "cruise" within a visualized filesystem.
28     '';
29     homepage = "http://xcruiser.sourceforge.net/";
30     license = licenses.gpl2;
31     maintainers = with maintainers; [ ehmry ];
32     platforms = with platforms; linux;
33   };