summary refs log tree commit diff
path: root/pkgs/development/libraries/libHX
diff options
context:
space:
mode:
authorThomas Strobel <ts468@cam.ac.uk>2014-09-15 11:55:23 +0200
committerThomas Strobel <ts468@cam.ac.uk>2014-09-15 11:55:23 +0200
commit66dbde4002b8ee64dd060ab06f9ecfbff9f2dd13 (patch)
tree628896d492c8f73303f4fd437df39bfcad7bb0be /pkgs/development/libraries/libHX
parenta0ea30c613f61831054b43fd3c6c73f9e9d7f2b0 (diff)
downloadnixpkgs-66dbde4002b8ee64dd060ab06f9ecfbff9f2dd13.tar
nixpkgs-66dbde4002b8ee64dd060ab06f9ecfbff9f2dd13.tar.gz
nixpkgs-66dbde4002b8ee64dd060ab06f9ecfbff9f2dd13.tar.bz2
nixpkgs-66dbde4002b8ee64dd060ab06f9ecfbff9f2dd13.tar.lz
nixpkgs-66dbde4002b8ee64dd060ab06f9ecfbff9f2dd13.tar.xz
nixpkgs-66dbde4002b8ee64dd060ab06f9ecfbff9f2dd13.tar.zst
nixpkgs-66dbde4002b8ee64dd060ab06f9ecfbff9f2dd13.zip
New packages: pam_mount and libHX
Add pam_mount package. Integration into NixOS is still missing.
Diffstat (limited to 'pkgs/development/libraries/libHX')
-rw-r--r--pkgs/development/libraries/libHX/default.nix29
1 files changed, 29 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libHX/default.nix b/pkgs/development/libraries/libHX/default.nix
new file mode 100644
index 00000000000..fb837748852
--- /dev/null
+++ b/pkgs/development/libraries/libHX/default.nix
@@ -0,0 +1,29 @@
+{ stdenv, fetchurl, autoconf, automake, libtool }:
+
+stdenv.mkDerivation rec {
+  name = "libHX-3.21";
+
+  src = fetchurl {
+    url = "mirror://sourceforge/libhx/libHX/3.21/${name}.tar.xz";
+    sha256 = "0wcr6kbhsw6v4js7q4p7fhli37c39dv1rryjf768rkwshl2z8f6v";
+  };
+
+  patches = [];
+
+  buildInputs = [ autoconf automake libtool ];
+
+  preConfigure = ''
+    sh autogen.sh
+    '';
+
+  meta = {
+    homepage = http://libhx.sourceforge.net/;
+    description = ''
+      libHX is a C library (with some C++ bindings available) that provides data structures
+      and functions commonly needed, such as maps, deques, linked lists, string formatting
+      and autoresizing, option and config file parsing, type checking casts and more.
+      '';
+    maintainers = [];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}