summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authormingchuan <ming@culpring.com>2017-09-12 23:06:19 +0800
committerOrivej Desh <orivej@gmx.fr>2017-10-03 14:27:09 +0000
commit2ab2b885c5c0655f41d65362067f89d45bd85e03 (patch)
tree4773bc8b64abb2532ed44f25565f1fa68e14b5ed /pkgs/development
parentccdccf14609877885c33ae46534b519dcb7c16d8 (diff)
downloadnixpkgs-2ab2b885c5c0655f41d65362067f89d45bd85e03.tar
nixpkgs-2ab2b885c5c0655f41d65362067f89d45bd85e03.tar.gz
nixpkgs-2ab2b885c5c0655f41d65362067f89d45bd85e03.tar.bz2
nixpkgs-2ab2b885c5c0655f41d65362067f89d45bd85e03.tar.lz
nixpkgs-2ab2b885c5c0655f41d65362067f89d45bd85e03.tar.xz
nixpkgs-2ab2b885c5c0655f41d65362067f89d45bd85e03.tar.zst
nixpkgs-2ab2b885c5c0655f41d65362067f89d45bd85e03.zip
marisa: init at 0.2.4
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/marisa/default.nix21
1 files changed, 21 insertions, 0 deletions
diff --git a/pkgs/development/libraries/marisa/default.nix b/pkgs/development/libraries/marisa/default.nix
new file mode 100644
index 00000000000..5e4de2b4e1c
--- /dev/null
+++ b/pkgs/development/libraries/marisa/default.nix
@@ -0,0 +1,21 @@
+{ stdenv, fetchurl }:
+
+stdenv.mkDerivation rec {
+  name = "marisa-${version}";
+  version = "0.2.4";
+
+  src = fetchurl {
+    url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/marisa-trie/marisa-${version}.tar.gz";
+    sha256 = "1cwzf8hr348zihkiy0qckx0n6rxg7sy113xhbslb1irw1pvs99v7";
+  };
+
+  enableParallelBuilding = true;
+
+  meta = with stdenv.lib; {
+    homepage    = https://code.google.com/p/marisa-trie/;
+    description = "Static and space-efficient trie data structure library";
+    license     = licenses.bsd3;
+    maintainers = with maintainers; [ mingchuan ];
+    platforms   = platforms.all;
+  };
+}