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

PyF: init at 0.11.1.0

parent d41089dd
Branches
Tags
No related merge requests found
......@@ -69,6 +69,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "JuicyPixels" "3.3.8"
, callHackage "OneTuple" "0.3.1"
, callHackage "OpenGLRaw" "3.3.4.1"
, callHackage "PyF" "0.11.1.0"
, callHackage "aeson" "2.1.0.0"
, callHackage "ansi-terminal" "0.11.3"
, callHackage "apecs" "0.9.4"
......
......@@ -21,6 +21,8 @@ final: prev: with pkgs.haskell.lib; {
OpenGLRaw = prev.callPackage (./pkgs/OpenGLRaw.nix) { };
PyF = prev.callPackage (./pkgs/PyF.nix) { };
aeson = prev.callPackage (./pkgs/aeson.nix) { };
ansi-terminal = prev.callPackage (./pkgs/ansi-terminal.nix) { };
......
{ mkDerivation, base, bytestring, deepseq, filepath, ghc, ghc-boot
, hspec, HUnit, lib, mtl, parsec, process, template-haskell
, temporary, text, time
}:
mkDerivation {
pname = "PyF";
version = "0.11.1.0";
sha256 = "8fd451ac23e5e63813c464e1a8ac98ba5c2fb11599441c80fe9ebc0186e61c1f";
libraryHaskellDepends = [
base bytestring ghc ghc-boot mtl parsec template-haskell text time
];
testHaskellDepends = [
base bytestring deepseq filepath hspec HUnit process
template-haskell temporary text time
];
doHaddock = false;
jailbreak = true;
doCheck = false;
hyperlinkSource = false;
description = "Quasiquotations for a python like interpolated string formatter";
license = lib.licenses.bsd3;
}
\ No newline at end of file
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