about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/random/1.0.1.0.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/random/1.0.1.0.nix')
-rw-r--r--pkgs/development/libraries/haskell/random/1.0.1.0.nix17
1 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/development/libraries/haskell/random/1.0.1.0.nix b/pkgs/development/libraries/haskell/random/1.0.1.0.nix
deleted file mode 100644
index 275a1a097361f..0000000000000
--- a/pkgs/development/libraries/haskell/random/1.0.1.0.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ cabal, time }:
-
-cabal.mkDerivation (self: {
-  pname = "random";
-  version = "1.0.1.0";
-  sha256 = "1ghdmjzcn6n02x4gffa4g7wag4g7azrgxk3nsc5fqn9iny6rwp2i";
-  buildDepends = [ time ];
-  meta = {
-    description = "random number library";
-    license = self.stdenv.lib.licenses.bsd3;
-    platforms = self.ghc.meta.platforms;
-    maintainers = [
-      self.stdenv.lib.maintainers.andres
-      self.stdenv.lib.maintainers.simons
-    ];
-  };
-})