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

autoexporter: init at 2.0.0.2

parent bae852b6
No related merge requests found
......@@ -100,6 +100,7 @@ let packages =
, autodocodec-servant-multipart =
H.callHackage "autodocodec-servant-multipart" "0.0.0.0"
, autodocodec-yaml = H.callHackage "autodocodec-yaml" "0.2.0.2"
, autoexporter = H.callHackage "autoexporter" "2.0.0.2"
, barbies = H.callHackage "barbies" "2.0.3.1"
, base-orphans = H.callHackage "base-orphans" "0.8.7"
, basement = H.callHackage "basement" "0.0.15"
......
......@@ -111,6 +111,8 @@ self: with pkgs.haskell.lib; {
autodocodec-yaml = self.callPackage (./pkgs/autodocodec-yaml.nix) { };
autoexporter = self.callPackage (./pkgs/autoexporter.nix) { };
barbies = self.callPackage (./pkgs/barbies.nix) { };
base-compat = self.callPackage (./pkgs/base-compat.nix) { };
......
{ mkDerivation, Cabal, base, directory, filepath, lib }:
mkDerivation {
pname = "autoexporter";
version = "2.0.0.2";
sha256 = "f1de55da144f0bfaf1e1d9194684d61cd0a7ff825b3a7aae687631daa5a3a880";
isLibrary = true;
isExecutable = true;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base Cabal directory filepath ];
executableHaskellDepends = [ base Cabal directory filepath ];
enableLibraryProfiling = true;
enableExecutableProfiling = true;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
description = "Automatically re-export modules";
license = lib.licenses.mit;
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