summary refs log tree commit diff
path: root/pkgs/applications/misc/xfontsel
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-24 14:48:36 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2009-12-24 14:48:36 +0000
commit5a4f1b07f4618dac4b3a57c06d5bf84f3a606a08 (patch)
tree397e6efb9a4c1a643165059b7fda37a738ac48a5 /pkgs/applications/misc/xfontsel
parentea5a440d42814d09d24473fb25bbf1209bc09ae9 (diff)
downloadnixpkgs-5a4f1b07f4618dac4b3a57c06d5bf84f3a606a08.tar
nixpkgs-5a4f1b07f4618dac4b3a57c06d5bf84f3a606a08.tar.gz
nixpkgs-5a4f1b07f4618dac4b3a57c06d5bf84f3a606a08.tar.bz2
nixpkgs-5a4f1b07f4618dac4b3a57c06d5bf84f3a606a08.tar.lz
nixpkgs-5a4f1b07f4618dac4b3a57c06d5bf84f3a606a08.tar.xz
nixpkgs-5a4f1b07f4618dac4b3a57c06d5bf84f3a606a08.tar.zst
nixpkgs-5a4f1b07f4618dac4b3a57c06d5bf84f3a606a08.zip
Adding xfontsel. A bit hacky (to work well, it requires copying its app-defaults to $HOME)
As app-defaults should be installed with the libXt (maybe it's libXt which loads them), and
stracing that is the place where the code looks for app-defaults (the libXt store path), I
don't know of any better solution in nixpkgs by now.


svn path=/nixpkgs/trunk/; revision=19092
Diffstat (limited to 'pkgs/applications/misc/xfontsel')
-rw-r--r--pkgs/applications/misc/xfontsel/default.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/applications/misc/xfontsel/default.nix b/pkgs/applications/misc/xfontsel/default.nix
new file mode 100644
index 00000000000..222d8c412ce
--- /dev/null
+++ b/pkgs/applications/misc/xfontsel/default.nix
@@ -0,0 +1,23 @@
+# This program used to come with xorg releases, but now I could only find it
+# at http://www.x.org/releases/individual/.
+# That is why this expression is not inside pkgs.xorg
+
+{stdenv, fetchurl, libX11, pkgconfig, libXaw, libXi, imake, xauth, libXau}:
+stdenv.mkDerivation rec {
+  name = "xfontsel-1.0.2";
+
+  src = fetchurl {
+    url = "http://www.x.org/releases/individual/app/${name}.tar.bz2";
+    sha256 = "1a86a08sf0wjrki9ydh7hr5qf6hrixc4ljlxizakjzmx20wvlrks";
+  };
+
+  buildInputs = [libX11 pkgconfig libXaw];
+
+  # This will not make xfontsel find its app-defaults, but at least the $out
+  # directory will contain them.
+  # hack: Copying the XFontSel app-defaults file to $HOME makes xfontsel work.
+  patchPhase = ''
+    sed -i 's@^appdefaultdir=.*@appdefaultdir='$out/share/X11/app-defaults@ configure
+  '';
+}
+