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

lift-type: init at 0.1.0.1

parent 6d1c05c3
No related merge requests found
...@@ -438,6 +438,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -438,6 +438,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "lens" "5.2" , callHackage "lens" "5.2"
, callHackage "libsodium" "1.0.18.2" , callHackage "libsodium" "1.0.18.2"
, callHackage "libyaml" "0.1.2" , callHackage "libyaml" "0.1.2"
, callHackage "lift-type" "0.1.0.1"
, callHackage "lifted-async" "0.10.2.1" , callHackage "lifted-async" "0.10.2.1"
, callHackage "lifted-base" "0.2.3.12" , callHackage "lifted-base" "0.2.3.12"
, callHackage "linear" "1.21.10" , callHackage "linear" "1.21.10"
......
...@@ -633,6 +633,8 @@ self: with pkgs.haskell.lib; { ...@@ -633,6 +633,8 @@ self: with pkgs.haskell.lib; {
libyaml = self.callPackage (./pkgs/libyaml.nix) { }; libyaml = self.callPackage (./pkgs/libyaml.nix) { };
lift-type = self.callPackage (./pkgs/lift-type.nix) { };
lifted-async = self.callPackage (./pkgs/lifted-async.nix) { }; lifted-async = self.callPackage (./pkgs/lifted-async.nix) { };
lifted-base = self.callPackage (./pkgs/lifted-base.nix) { }; lifted-base = self.callPackage (./pkgs/lifted-base.nix) { };
......
{ mkDerivation, base, lib, template-haskell }:
mkDerivation {
pname = "lift-type";
version = "0.1.0.1";
sha256 = "aeb79e3090a38130fdb1da374e9e50e132e6bf5e20b45de58af5230d9c8f2585";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base template-haskell ];
testHaskellDepends = [ base template-haskell ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/parsonsmatt/lift-type#readme";
description = "Lift a type from a Typeable constraint to a Template Haskell type";
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