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

th-expand-syns: init at 0.4.10.0

parent 9deaa27a
Branches
Tags
No related merge requests found
...@@ -573,6 +573,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -573,6 +573,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "these" "1.1.1.1" , callHackage "these" "1.1.1.1"
, callHackage "these-skinny" "0.7.5" , callHackage "these-skinny" "0.7.5"
, callHackage "tf-random" "0.5" , callHackage "tf-random" "0.5"
, callHackage "th-expand-syns" "0.4.10.0"
, callHackage "th-extras" "0.0.0.6" , callHackage "th-extras" "0.0.0.6"
, callHackage "th-lift-instances" "0.1.20" , callHackage "th-lift-instances" "0.1.20"
, callHackage "tidal" "1.8.1" , callHackage "tidal" "1.8.1"
......
...@@ -773,6 +773,8 @@ final: prev: with pkgs.haskell.lib; { ...@@ -773,6 +773,8 @@ final: prev: with pkgs.haskell.lib; {
tf-random = prev.callPackage (./pkgs/tf-random.nix) { }; tf-random = prev.callPackage (./pkgs/tf-random.nix) { };
th-expand-syns = prev.callPackage (./pkgs/th-expand-syns.nix) { };
th-extras = prev.callPackage (./pkgs/th-extras.nix) { }; th-extras = prev.callPackage (./pkgs/th-extras.nix) { };
th-lift-instances = prev.callPackage (./pkgs/th-lift-instances.nix) { }; th-lift-instances = prev.callPackage (./pkgs/th-lift-instances.nix) { };
......
{ mkDerivation
, base
, containers
, lib
, syb
, template-haskell
, th-abstraction
}:
mkDerivation {
pname = "th-expand-syns";
version = "0.4.10.0";
sha256 = "f5455844e27578cf937c2eb670f15f6c10a45c29b2599e32bf308245360c9010";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [
base
containers
syb
template-haskell
th-abstraction
];
testHaskellDepends = [ base template-haskell th-abstraction ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/DanielSchuessler/th-expand-syns";
description = "Expands type synonyms in Template Haskell ASTs";
license = lib.licenses.bsd3;
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