about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/chmlib
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/libraries/chmlib')
-rw-r--r--nixpkgs/pkgs/development/libraries/chmlib/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/libraries/chmlib/default.nix b/nixpkgs/pkgs/development/libraries/chmlib/default.nix
new file mode 100644
index 000000000000..6e21984eb1da
--- /dev/null
+++ b/nixpkgs/pkgs/development/libraries/chmlib/default.nix
@@ -0,0 +1,21 @@
+{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
+
+stdenv.mkDerivation rec {
+  name = "chmlib-0.40a";
+
+  src = fetchFromGitHub {
+    owner = "jedwing";
+    repo = "CHMLib";
+    rev = "2bef8d063ec7d88a8de6fd9f0513ea42ac0fa21f";
+    sha256 = "1hah0nw0l05npva2r35ywwd0kzyiiz4vamghm6d71h8170iva6m9";
+  };
+
+  nativeBuildInputs = [ autoreconfHook ];
+
+  meta = with lib; {
+    homepage = "http://www.jedrea.com/chmlib";
+    license = licenses.lgpl2;
+    description = "A library for dealing with Microsoft ITSS/CHM format files";
+    platforms = platforms.unix;
+  };
+}