From 358a38fea47657e7f779dcd84525315dd094ec4d Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 5 Aug 2011 18:02:16 +0000 Subject: [PATCH] async: updated build instructions with cabal2nix svn path=/nixpkgs/trunk/; revision=28178 --- .../development/libraries/haskell/async/default.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 pkgs/development/libraries/haskell/async/default.nix diff --git a/pkgs/development/libraries/haskell/async/default.nix b/pkgs/development/libraries/haskell/async/default.nix new file mode 100755 index 00000000000..5ed577c5bc2 --- /dev/null +++ b/pkgs/development/libraries/haskell/async/default.nix @@ -0,0 +1,13 @@ +{cabal}: + +cabal.mkDerivation (self : { + pname = "async"; + version = "1.2"; + sha256 = "a5963d36fc1ba142d18920f967190b25cf80f700d863372b6d33ad5257a1773a"; + propagatedBuildInputs = []; + meta = { + homepage = "http://gitorious.org/async/"; + description = "Asynchronous Computations"; + license = self.stdenv.lib.licenses.bsd3; + }; +})