diff --git a/manifest.dhall b/manifest.dhall index b26ec45a80f4cb67a69184622eee750de0b1c6cf..7dd8fa30eb67519d7b1d375ed0b97be88d4e9cba 100644 --- a/manifest.dhall +++ b/manifest.dhall @@ -367,7 +367,6 @@ in [ callHackage "Cabal" "3.8.1.0" , callHackage "lens" "5.2" , callHackage "lens-aeson" "1.2.1" , callHackage "lens-family-th" "0.5.2.1" - , callHackage "libsodium" "1.0.18.2" , callHackage "libyaml" "0.1.2" , callHackage "lifted-async" "0.10.2.1" , callHackage "lifted-base" "0.2.3.12" diff --git a/overlay.nix b/overlay.nix index 42507b241e43407f76acd927f62a8608cd4b6734..f56c1d9e5e6320f632360c2f5e2ae600ef663ee8 100644 --- a/overlay.nix +++ b/overlay.nix @@ -471,8 +471,6 @@ final: prev: with pkgs.haskell.lib; { lens-family-th = prev.callPackage (./pkgs/lens-family-th.nix) { }; - libsodium = prev.callPackage (./pkgs/libsodium.nix) { }; - libyaml = prev.callPackage (./pkgs/libyaml.nix) { }; lifted-async = prev.callPackage (./pkgs/lifted-async.nix) { }; diff --git a/pkgs/libsodium.nix b/pkgs/libsodium.nix deleted file mode 100644 index 6ea1dc54bbb16c39dd1c7e54e7f3ee98ac381919..0000000000000000000000000000000000000000 --- a/pkgs/libsodium.nix +++ /dev/null @@ -1,41 +0,0 @@ -{ 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; -}