summary refs log tree commit diff
path: root/pkgs/applications/misc/xfontsel/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/misc/xfontsel/default.nix')
-rw-r--r--pkgs/applications/misc/xfontsel/default.nix30
1 files changed, 30 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..b875e51ecff
--- /dev/null
+++ b/pkgs/applications/misc/xfontsel/default.nix
@@ -0,0 +1,30 @@
+# 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}:
+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.
+  preInstall = ''
+    installFlags="appdefaultdir=$out/share/X11/app-defaults"
+  '';
+
+  meta = {
+    homepage = http://www.x.org/;
+    description = "Allows testing the fonts available in an X server";
+    licesnse = "free";
+    maintainers = with stdenv.lib.maintainers; [viric];
+    platforms = with stdenv.lib.platforms; linux;
+  };
+}