Skip to content
Snippets Groups Projects
Commit 13148d14 authored by Daniel Firth's avatar Daniel Firth
Browse files

libsodium: init at 1.0.18.2

parent 22105529
No related merge requests found
...@@ -352,6 +352,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -352,6 +352,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "lens" "5.2" , callHackage "lens" "5.2"
, callHackage "lens-aeson" "1.2.1" , callHackage "lens-aeson" "1.2.1"
, callHackage "lens-family-th" "0.5.2.1" , callHackage "lens-family-th" "0.5.2.1"
, callHackage "libsodium" "1.0.18.2"
, callHackage "libyaml" "0.1.2" , callHackage "libyaml" "0.1.2"
, callHackage "lifted-async" "0.10.2.1" , callHackage "lifted-async" "0.10.2.1"
, callHackage "lifted-base" "0.2.3.12" , callHackage "lifted-base" "0.2.3.12"
......
...@@ -441,6 +441,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -441,6 +441,8 @@ final: prev: with pkgs.haskell.lib; {
lens-family-th = prev.callPackage (./pkgs/lens-family-th.nix) { }; lens-family-th = prev.callPackage (./pkgs/lens-family-th.nix) { };
libsodium = prev.callPackage (./pkgs/libsodium.nix) { };
libyaml = prev.callPackage (./pkgs/libyaml.nix) { }; libyaml = prev.callPackage (./pkgs/libyaml.nix) { };
lifted-async = prev.callPackage (./pkgs/lifted-async.nix) { }; lifted-async = prev.callPackage (./pkgs/lifted-async.nix) { };
......
{ mkDerivation
, base
, c2hs
, hedgehog
, lib
, libsodium
, tasty
, tasty-hedgehog
, tasty-hunit
}:
mkDerivation {
pname = "libsodium";
version = "1.0.18.2";
sha256 = "9cc7620f019993b04019df6a2563831beee2eb93b45431fad728c63be7312108";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
libraryPkgconfigDepends = [ libsodium ];
libraryToolDepends = [ c2hs ];
testHaskellDepends = [
base
hedgehog
tasty
tasty-hedgehog
tasty-hunit
];
testPkgconfigDepends = [ libsodium ];
testToolDepends = [ c2hs ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/k0001/hs-libsodium";
description = "Low-level bindings to the libsodium C library";
license = lib.licenses.isc;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment