about summary refs log tree commit diff
path: root/third_party/immer/nix
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2020-12-23T12·36+0100
committertazjin <mail@tazj.in>2020-12-23T12·44+0000
commit73e9265f954528b6b2eccf98572e77126539a8df (patch)
tree48a1e093761e86c5e605d074e8c4d5f1bb64f1b1 /third_party/immer/nix
parentf7ea650142eb796eb3f2827c805cc0bc563e2183 (diff)
chore(3p/immer): Remove vendored copy of immer r/2029
We ended up dropping the use of this library again.

Change-Id: I2c44cd22a6128d23f87a582402bf5fb84991d608
Reviewed-on: https://cl.tvl.fyi/c/depot/+/2292
Tested-by: BuildkiteCI
Reviewed-by: Profpatsch <mail@profpatsch.de>
Diffstat (limited to 'third_party/immer/nix')
-rw-r--r--third_party/immer/nix/benchmarks.nix100
-rw-r--r--third_party/immer/nix/docs.nix27
2 files changed, 0 insertions, 127 deletions
diff --git a/third_party/immer/nix/benchmarks.nix b/third_party/immer/nix/benchmarks.nix
deleted file mode 100644
index 9eaa87e291d0..000000000000
--- a/third_party/immer/nix/benchmarks.nix
+++ /dev/null
@@ -1,100 +0,0 @@
-{ nixpkgs ? <nixpkgs>}:
-
-with import nixpkgs {};
-
-rec {
-  c_rrb = stdenv.mkDerivation rec {
-    name = "c-rrb-${version}";
-    version = "git-${commit}";
-    commit = "d908617ff84515af90c454ff4d0f98675ae6b456";
-    src = fetchFromGitHub {
-      owner = "hyPiRion";
-      repo = "c-rrb";
-      rev = commit;
-      sha256 = "0zmha3xi80vgdcwzb4vwdllf97dvggjpjfgahrpsb5f5qi3yshxa";
-    };
-    nativeBuildInputs = [ autoreconfHook ];
-    propagatedBuildInputs = [ boehmgc ];
-    meta = with stdenv.lib; {
-      homepage = "http://hypirion.com/thesis";
-      description = "RRB-tree implemented as a library in C. ";
-      license = licenses.mit;
-    };
-  };
-
-  steady = stdenv.mkDerivation rec {
-    name = "steady-${version}";
-    version = "git-${commit}";
-    commit = "aac65955f18d0de856e3421d8593378d5e1832c4";
-    src = fetchFromGitHub {
-      owner = "marcusz";
-      repo = "steady";
-      rev = commit;
-      sha256 = "0zaxr9aj1q5sr99h133fzxch8lw9daw1pxs2g972s02gdq8r8fzh";
-    };
-    dontBuild = true;
-    installPhase = "mkdir -vp $out/include; cp -vr $src/steady $out/include/";
-    meta = with stdenv.lib; {
-      homepage = "https://github.com/marcusz/steady";
-      description = "This is a fast and reliable persistent (immutable) vector class for C++";
-      license = licenses.asl20;
-    };
-  };
-
-  chunkedseq = stdenv.mkDerivation rec {
-    name = "chunkedseq-${version}";
-    version = "git-${commit}";
-    commit = "f1c4f9470edcb59996fdc4aad34311767c46b25e";
-    src = fetchFromGitHub {
-      owner = "deepsea-inria";
-      repo = "chunkedseq";
-      rev = commit;
-      sha256 = "19bps5r3dy55jlvpwq8x2s4d0mwwx0djb6g2r2vvbf628bg6cx8p";
-    };
-    dontBuild = true;
-    installPhase = "mkdir -vp $out/include/chunkedseq; cp -vr $src/include/* $out/include/chunkedseq/";
-    meta = with stdenv.lib; {
-      homepage = "http://deepsea.inria.fr/chunkedseq";
-      description = "Container data structure for representing sequences by many fixed-capacity heap-allocated buffers--chunks";
-      license = licenses.mit;
-    };
-  };
-
-  immutable_cpp = stdenv.mkDerivation rec {
-    name = "immutable-cpp-${version}";
-    version = "git-${commit}";
-    commit = "a4a32022d895dd0d3c03547a2b2a2b03face01eb";
-    src = fetchFromGitHub {
-      owner = "rsms";
-      repo = "immutable-cpp";
-      rev = commit;
-      sha256 = "11zn67avqcc8baddf43fsd29bpv08p0ri6zqng12105k725fq2p7";
-    };
-    dontBuild = true;
-    installPhase = "mkdir -vp $out/include; cp -vr $src/immutable $out/include/";
-    meta = with stdenv.lib; {
-      homepage = "https://github.com/rsms/immutable-cpp";
-      description = "Persistent immutable data structures for C++";
-      license = licenses.mit;
-    };
-  };
-
-  hash_trie = stdenv.mkDerivation rec {
-    name = "hash_trie-${version}";
-    version = "git-${commit}";
-    commit = "1ce346c74923ba16329332103dc0f425b658c8be";
-    src = fetchFromGitHub {
-      owner = "philsquared";
-      repo = "hash_trie";
-      rev = commit;
-      sha256 = "0rpa1682vm0fvvrs1jr7jdkskcrgkm3qrawrcr7xrmknz5jf0v4l";
-    };
-    dontBuild = true;
-    installPhase = "mkdir -vp $out/include; cp -vr $src/hash_trie.hpp $out/include/";
-    meta = with stdenv.lib; {
-      homepage = "https://github.com/rsms/immutable-cpp";
-      description = "Persistent immutable data structures for C++";
-      license = licenses.mit;
-    };
-  };
-}
diff --git a/third_party/immer/nix/docs.nix b/third_party/immer/nix/docs.nix
deleted file mode 100644
index f885e6d9e177..000000000000
--- a/third_party/immer/nix/docs.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ nixpkgs ? <nixpkgs>}:
-
-with import nixpkgs {};
-
-rec {
-  breathe = with python27Packages; buildPythonPackage rec {
-    version = "git-arximboldi-${commit}";
-    pname = "breathe";
-    name = "${pname}-${version}";
-    commit = "5074aecb5ad37bb70f50216eaa01d03a375801ec";
-    src = fetchFromGitHub {
-      owner = "arximboldi";
-      repo = "breathe";
-      rev = commit;
-      sha256 = "10kkh3wb0ggyxx1a7x50aklhhw0cq269g3jddf2gb3pv9gpbj7sa";
-    };
-    propagatedBuildInputs = [ docutils sphinx ];
-    meta = with stdenv.lib; {
-      homepage = https://github.com/michaeljones/breathe;
-      license = licenses.bsd3;
-      description = "Sphinx Doxygen renderer";
-      inherit (sphinx.meta) platforms;
-    };
-  };
-
-  recommonmark = python27Packages.recommonmark;
-}