From 5c476830acd7de7c527ae25aa255a2825b488dc4 Mon Sep 17 00:00:00 2001 From: Daniel Firth <dan.firth@homotopic.tech> Date: Sat, 5 Nov 2022 15:02:12 +0000 Subject: [PATCH] saltine: remove --- configuration.nix | 2 -- manifest.dhall | 1 - overlay.nix | 2 -- pkgs/saltine.nix | 40 ---------------------------------------- 4 files changed, 45 deletions(-) delete mode 100644 pkgs/saltine.nix diff --git a/configuration.nix b/configuration.nix index 24205ebc..6c8a7c52 100644 --- a/configuration.nix +++ b/configuration.nix @@ -4,6 +4,4 @@ with pkgs.haskell.lib; final: prev: { - saltine = addPkgconfigDepend prev.saltine pkgs.libsodium; - } diff --git a/manifest.dhall b/manifest.dhall index 48051c38..b26ec45a 100644 --- a/manifest.dhall +++ b/manifest.dhall @@ -491,7 +491,6 @@ in [ callHackage "Cabal" "3.8.1.0" , callHackage "safe-coloured-text-terminfo" "0.1.0.0" , callHackage "safe-coloured-text" "0.2.0.1" , callHackage "safe-exceptions" "0.1.7.3" - , callHackage "saltine" "0.1.1.1" , callHackage "scotty" "0.12" , callHackage "scientific" "0.3.7.0" , callHackage "sdl2" "2.5.3.3" diff --git a/overlay.nix b/overlay.nix index 6e3724fe..42507b24 100644 --- a/overlay.nix +++ b/overlay.nix @@ -687,8 +687,6 @@ final: prev: with pkgs.haskell.lib; { safe-exceptions = prev.callPackage (./pkgs/safe-exceptions.nix) { }; - saltine = prev.callPackage (./pkgs/saltine.nix) { }; - scientific = prev.callPackage (./pkgs/scientific.nix) { }; scotty = prev.callPackage (./pkgs/scotty.nix) { }; diff --git a/pkgs/saltine.nix b/pkgs/saltine.nix deleted file mode 100644 index 4e72a0e9..00000000 --- a/pkgs/saltine.nix +++ /dev/null @@ -1,40 +0,0 @@ -{ mkDerivation -, base -, bytestring -, hashable -, lib -, libsodium -, profunctors -, QuickCheck -, semigroups -, test-framework -, test-framework-quickcheck2 -}: -mkDerivation { - pname = "saltine"; - version = "0.1.1.1"; - sha256 = "a75b1aae629bef09c1b14364abbf8998420e0737bf2f3515ca18055ef336f9ad"; - isLibrary = true; - isExecutable = false; - enableSeparateDataOutput = false; - libraryHaskellDepends = [ base bytestring hashable profunctors ]; - libraryPkgconfigDepends = [ libsodium ]; - testHaskellDepends = [ - base - bytestring - QuickCheck - semigroups - test-framework - test-framework-quickcheck2 - ]; - enableLibraryProfiling = false; - enableExecutableProfiling = false; - doHaddock = false; - jailbreak = true; - doCheck = false; - doBenchmark = false; - hyperlinkSource = false; - description = "Cryptography that's easy to digest (NaCl/libsodium bindings)"; - license = lib.licenses.mit; - broken = false; -} -- GitLab