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

simple-reflect: init at 0.3.3

parent 44a3c9b8
Branches
Tags
No related merge requests found
...@@ -636,6 +636,7 @@ in [ callHackage "Cabal" "3.8.1.0" ...@@ -636,6 +636,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "shake" "0.19.6" , callHackage "shake" "0.19.6"
, callHackage "shelly" "1.10.0" , callHackage "shelly" "1.10.0"
, callHackage "silently" "1.2.5.3" , callHackage "silently" "1.2.5.3"
, callHackage "simple-reflect" "0.3.3"
, callHackage "simple-sendfile" "0.2.30" , callHackage "simple-sendfile" "0.2.30"
, callHackage "singleton-bool" "0.1.6" , callHackage "singleton-bool" "0.1.6"
, callHackage "singletons" "3.0.2" , callHackage "singletons" "3.0.2"
......
...@@ -947,6 +947,8 @@ self: with pkgs.haskell.lib; { ...@@ -947,6 +947,8 @@ self: with pkgs.haskell.lib; {
silently = self.callPackage (./pkgs/silently.nix) { }; silently = self.callPackage (./pkgs/silently.nix) { };
simple-reflect = self.callPackage (./pkgs/simple-reflect.nix) { };
simple-sendfile = self.callPackage (./pkgs/simple-sendfile.nix) { }; simple-sendfile = self.callPackage (./pkgs/simple-sendfile.nix) { };
singleton-bool = self.callPackage (./pkgs/singleton-bool.nix) { }; singleton-bool = self.callPackage (./pkgs/singleton-bool.nix) { };
......
{ mkDerivation, base, lib }:
mkDerivation {
pname = "simple-reflect";
version = "0.3.3";
sha256 = "07825ea04c135298008cf080133e3bfc8e04cbacd24719c46ac6a2ca4acfdb2b";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "http://twanvl.nl/blog/haskell/simple-reflection-of-expressions";
description = "Simple reflection of expressions containing variables";
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