1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/securemem/default.nix

15 lines
442 B
Nix
Raw Normal View History

2013-08-11 17:52:33 +01:00
{ cabal, byteable }:
cabal.mkDerivation (self: {
pname = "securemem";
version = "0.1.3";
sha256 = "1kycpk73vh8wwxzn35hmv36vwsc9r4g53f2fy6bn21q9gfm2r90j";
2013-08-11 17:52:33 +01:00
buildDepends = [ byteable ];
meta = {
homepage = "http://github.com/vincenthz/hs-securemem";
description = "abstraction to an auto scrubbing and const time eq, memory chunk";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})