about summary refs log tree commit diff
path: root/pkgs/tools/compression
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2017-11-29 00:52:24 +0000
committerOrivej Desh <orivej@gmx.fr>2017-11-29 00:59:46 +0000
commit7584d1c3bdcf4da5cf820989bb838eca25fc8586 (patch)
treef2d523cec7ec51a9c8ddd67c73a24f2e56803098 /pkgs/tools/compression
parente8b6a11aba4d6c924f37dea6b202c7881efac87b (diff)
downloadnixlib-7584d1c3bdcf4da5cf820989bb838eca25fc8586.tar
nixlib-7584d1c3bdcf4da5cf820989bb838eca25fc8586.tar.gz
nixlib-7584d1c3bdcf4da5cf820989bb838eca25fc8586.tar.bz2
nixlib-7584d1c3bdcf4da5cf820989bb838eca25fc8586.tar.lz
nixlib-7584d1c3bdcf4da5cf820989bb838eca25fc8586.tar.xz
nixlib-7584d1c3bdcf4da5cf820989bb838eca25fc8586.tar.zst
nixlib-7584d1c3bdcf4da5cf820989bb838eca25fc8586.zip
brotliUnstable: delete
Diffstat (limited to 'pkgs/tools/compression')
-rw-r--r--pkgs/tools/compression/brotli/unstable.nix46
1 files changed, 0 insertions, 46 deletions
diff --git a/pkgs/tools/compression/brotli/unstable.nix b/pkgs/tools/compression/brotli/unstable.nix
deleted file mode 100644
index 59eb1e1d469a..000000000000
--- a/pkgs/tools/compression/brotli/unstable.nix
+++ /dev/null
@@ -1,46 +0,0 @@
-{ 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;
-  };
-}