From 3a20cd8208f423d7e202d3d55d7f5375a50bf98c Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Fri, 5 Aug 2011 18:01:51 +0000 Subject: [PATCH] hopenssl: updated build instructions with cabal2nix svn path=/nixpkgs/trunk/; revision=28172 --- .../libraries/haskell/hopenssl/default.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/development/libraries/haskell/hopenssl/default.nix b/pkgs/development/libraries/haskell/hopenssl/default.nix index 7251fe4303da..ae40d2825e81 100644 --- a/pkgs/development/libraries/haskell/hopenssl/default.nix +++ b/pkgs/development/libraries/haskell/hopenssl/default.nix @@ -3,12 +3,13 @@ cabal.mkDerivation (self : { pname = "hopenssl"; version = "1.6.1"; - sha256 = "12lmhpg7m2amqld95lpv6d2j3rfzgdbmz8jsgh2hjb5hx72l5fkm"; - propagatedBuildInputs = [mtl]; - extraBuildInputs = [openssl]; + sha256 = "75ba42c5e9b02c09057c5aa25f577bdfe5214533fbd2921ac555897ade85958a"; + propagatedBuildInputs = [openssl mtl]; meta = { + homepage = "http://gitorious.org/hopenssl"; description = "FFI bindings to OpenSSL's EVP digest interface"; - license = "BSD3"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.stdenv.lib.platforms.haskellPlatforms; + maintainers = [self.stdenv.lib.maintainers.simons]; }; }) -