From f8f598ab7827498af07bcf1b002df44ebc0ccd1a Mon Sep 17 00:00:00 2001 From: Daniel Firth <dan.firth@homotopic.tech> Date: Mon, 17 Oct 2022 15:56:45 +0100 Subject: [PATCH] ema: remove --- manifest.dhall | 5 --- overlay.nix | 2 - pkgs/ema.nix | 113 ------------------------------------------------- 3 files changed, 120 deletions(-) delete mode 100644 pkgs/ema.nix diff --git a/manifest.dhall b/manifest.dhall index 330265f5..e2d7e27e 100644 --- a/manifest.dhall +++ b/manifest.dhall @@ -138,11 +138,6 @@ in [ callHackage "Cabal" "3.8.1.0" (None Text) (None Text) , callHackage "email-validate" "2.3.2.16" - , callCabal2nix - "ema" - "https://github.com/EmaApps/ema" - (None Text) - (None Text) , callCabal2nix "effectful-cache" "https://github.com/haskell-effectful/cache-effectful" diff --git a/overlay.nix b/overlay.nix index 92cc865a..288b4890 100644 --- a/overlay.nix +++ b/overlay.nix @@ -125,8 +125,6 @@ final: prev: with pkgs.haskell.lib; { effectful-th = prev.callPackage (./pkgs/effectful-th.nix) { }; - ema = prev.callPackage (./pkgs/ema.nix) { }; - email-validate = prev.callPackage (./pkgs/email-validate.nix) { }; extra = prev.callPackage (./pkgs/extra.nix) { }; diff --git a/pkgs/ema.nix b/pkgs/ema.nix deleted file mode 100644 index 40f9ee99..00000000 --- a/pkgs/ema.nix +++ /dev/null @@ -1,113 +0,0 @@ -{ mkDerivation -, aeson -, async -, base -, blaze-html -, blaze-markup -, constraints-extras -, containers -, data-default -, dependent-sum -, dependent-sum-template -, directory -, fetchgit -, file-embed -, filepath -, filepattern -, fsnotify -, generic-optics -, generics-sop -, http-types -, lib -, lvar -, monad-logger -, monad-logger-extras -, mtl -, neat-interpolation -, optics-core -, optparse-applicative -, pandoc -, pandoc-types -, raw-strings-qq -, relude -, sop-core -, template-haskell -, text -, time -, unionmount -, unliftio -, url-slug -, wai -, wai-middleware-static -, wai-websockets -, warp -, websockets -}: -mkDerivation { - pname = "ema"; - version = "0.8.2.0"; - src = fetchgit { - url = "https://github.com/EmaApps/ema"; - sha256 = "0i7ijx85w1bhb98ppi5lj8ypq9jkhv2268cynj492dfd7hnbhzfv"; - rev = "be89ffe306a15ab4a16494c8593d989fabcc4486"; - fetchSubmodules = true; - }; - enableSeparateDataOutput = true; - libraryHaskellDepends = [ - aeson - async - base - blaze-html - blaze-markup - constraints-extras - containers - data-default - dependent-sum - dependent-sum-template - directory - file-embed - filepath - filepattern - fsnotify - generic-optics - generics-sop - http-types - lvar - monad-logger - monad-logger-extras - mtl - neat-interpolation - optics-core - optparse-applicative - pandoc - pandoc-types - relude - sop-core - template-haskell - text - time - unionmount - unliftio - url-slug - wai - wai-middleware-static - wai-websockets - warp - websockets - ]; - testHaskellDepends = [ - base - generics-sop - raw-strings-qq - template-haskell - text - url-slug - ]; - doHaddock = false; - jailbreak = true; - doCheck = false; - hyperlinkSource = false; - homepage = "https://ema.srid.ca/"; - description = "Static site generator library with hot reload"; - license = lib.licenses.agpl3Only; -} -- GitLab