about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorknupfer <fknupfer@gmail.com>2016-01-21 22:09:23 +0100
committerknupfer <fknupfer@gmail.com>2016-01-21 22:09:23 +0100
commit05bf6b2b10abae70dc6a605cc7575c13fd4f1a81 (patch)
tree4f25b36c7dd2acc63449bb4ee5229158d600bc8c /pkgs
parent23b76d310033c4db5e91635311f06b3672f450a5 (diff)
downloadnixlib-05bf6b2b10abae70dc6a605cc7575c13fd4f1a81.tar
nixlib-05bf6b2b10abae70dc6a605cc7575c13fd4f1a81.tar.gz
nixlib-05bf6b2b10abae70dc6a605cc7575c13fd4f1a81.tar.bz2
nixlib-05bf6b2b10abae70dc6a605cc7575c13fd4f1a81.tar.lz
nixlib-05bf6b2b10abae70dc6a605cc7575c13fd4f1a81.tar.xz
nixlib-05bf6b2b10abae70dc6a605cc7575c13fd4f1a81.tar.zst
nixlib-05bf6b2b10abae70dc6a605cc7575c13fd4f1a81.zip
brotliUnstable: init at bed93862
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/tools/compression/brotli/unstable.nix46
-rw-r--r--pkgs/top-level/all-packages.nix2
2 files changed, 48 insertions, 0 deletions
diff --git a/pkgs/tools/compression/brotli/unstable.nix b/pkgs/tools/compression/brotli/unstable.nix
new file mode 100644
index 000000000000..59eb1e1d469a
--- /dev/null
+++ b/pkgs/tools/compression/brotli/unstable.nix
@@ -0,0 +1,46 @@
+{ stdenv, fetchFromGitHub }:
+
+# ?TODO: there's also python lib in there
+
+stdenv.mkDerivation rec {
+  name = "brotli-20160112";
+  version = "bed93862";
+
+  src = fetchFromGitHub {
+    owner = "google";
+    repo = "brotli";
+    rev = "bed93862608d4d232ebe6d229f04e48399775e8b";
+    sha256 = "0g94kqh984qkbqbj4fpkkyji9wnbrb9cs32r9d6niw1sqfnfkd6f";
+  };
+
+  preConfigure = "cd tools";
+
+  # Debian installs "brotli" instead of "bro" but let's keep upstream choice for now.
+  installPhase = ''
+    mkdir -p "$out/bin"
+    mv ./bro "$out/bin/"
+  '';
+
+  meta = with stdenv.lib; {
+    inherit (src.meta) homepage;
+
+    description = "A generic-purpose lossless compression algorithm and tool";
+
+    longDescription =
+      ''  Brotli is a generic-purpose lossless compression algorithm that
+          compresses data using a combination of a modern variant of the LZ77
+          algorithm, Huffman coding and 2nd order context modeling, with a
+          compression ratio comparable to the best currently available
+          general-purpose compression methods. It is similar in speed with
+          deflate but offers more dense compression.
+
+          The specification of the Brotli Compressed Data Format is defined
+          in the following internet draft:
+          http://www.ietf.org/id/draft-alakuijala-brotli
+      '';
+
+    license = licenses.mit;
+    maintainers = [];
+    platforms = platforms.all;
+  };
+}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 1c283e4acb10..acdd52a1a783 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -1144,6 +1144,8 @@ let
 
   brotli = callPackage ../tools/compression/brotli { };
 
+  brotliUnstable = callPackage ../tools/compression/brotli/unstable.nix { };
+
   biosdevname = callPackage ../tools/networking/biosdevname { };
 
   checkbashism = callPackage ../development/tools/misc/checkbashisms { };