about summary refs log tree commit diff
path: root/pkgs/development/tools
diff options
context:
space:
mode:
authorVincent Laporte <Vincent.Laporte@gmail.com>2020-02-20 18:37:35 +0100
committerVincent Laporte <vbgl@users.noreply.github.com>2020-02-28 21:24:26 +0100
commitfca7f386db55f4e3bd456855113969e05c0b4804 (patch)
treefd1f5b1e56680546403a7e8fde78a011e38c5ee4 /pkgs/development/tools
parent00bd95722590ec718ca53b95a6ad544189e42d42 (diff)
downloadnixlib-fca7f386db55f4e3bd456855113969e05c0b4804.tar
nixlib-fca7f386db55f4e3bd456855113969e05c0b4804.tar.gz
nixlib-fca7f386db55f4e3bd456855113969e05c0b4804.tar.bz2
nixlib-fca7f386db55f4e3bd456855113969e05c0b4804.tar.lz
nixlib-fca7f386db55f4e3bd456855113969e05c0b4804.tar.xz
nixlib-fca7f386db55f4e3bd456855113969e05c0b4804.tar.zst
nixlib-fca7f386db55f4e3bd456855113969e05c0b4804.zip
trv: remove at 0.1.3
Diffstat (limited to 'pkgs/development/tools')
-rw-r--r--pkgs/development/tools/misc/trv/default.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/development/tools/misc/trv/default.nix b/pkgs/development/tools/misc/trv/default.nix
deleted file mode 100644
index 2e056306db4f..000000000000
--- a/pkgs/development/tools/misc/trv/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{stdenv, fetchFromGitHub, ocaml, findlib, camlp4, core_p4, async_p4, async_unix_p4
-, re2_p4, async_extra_p4, sexplib_p4, async_shell, core_extended_p4, async_find
-, cohttp, conduit, magic-mime
-}:
-
-assert stdenv.lib.versionOlder "4.02" ocaml.version;
-
-stdenv.mkDerivation rec {
-  pname = "trv";
-  version = "0.1.3";
-
-  src = fetchFromGitHub {
-    owner = "afiniate";
-    repo = "trv";
-    rev = version;
-    sha256 = "0fv0zh76djqhkzfzwv6k60rnky50pw9gn01lwhijrggrcxrrphz1";
-  };
-
-
-  buildInputs = [ ocaml findlib camlp4 ];
-  propagatedBuildInputs = [ core_p4 async_p4 async_unix_p4
-                            async_extra_p4 sexplib_p4 async_shell core_extended_p4
-                            async_find cohttp conduit magic-mime re2_p4 ];
-
-  createFindlibDestdir = true;
-  dontStrip = true;
-
-  installFlags = [ "SEMVER=${version}" "PREFIX=$(out)" ];
-
-  meta = with stdenv.lib; {
-    homepage = https://github.com/afiniate/trv;
-    description = "Shim for vrt to enable bootstrapping";
-    license = licenses.asl20;
-    maintainers = [ maintainers.ericbmerritt ];
-    platforms = ocaml.meta.platforms or [];
-  };
-}