-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
29 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,23 @@ | ||
{ mkDerivation, aeson, base, bytestring, containers, fetchgit | ||
, jsaddle, jsaddle-dom, lens, network-uri, reflex, reflex-dom-core | ||
, stdenv, text, time, witherable | ||
, reflex-dom-helpers, stdenv, text, time, witherable | ||
}: | ||
mkDerivation { | ||
pname = "bulmex"; | ||
version = "1.0.0.0"; | ||
version = "2.0.0"; | ||
src = fetchgit { | ||
url = "https://github.com/jappeace/bulmex"; | ||
sha256 = "0fbbzfg8qlxpw7ydh4qqgaqbi20jjm4pmf27hmizxnx6hmlsm50j"; | ||
rev = "4458fcdd36a7c9b2bc947d3e7666fd09b37e5869"; | ||
sha256 = "00gmnnk1y2lp0mfx04zmiq4fgxvl5kmg5gydlrz813bq5bd7jkbw"; | ||
rev = "161afcd390ed249f807ec7bf514a52c31799ea60"; | ||
fetchSubmodules = true; | ||
}; | ||
postUnpack = "sourceRoot+=/bulmex; echo source root reset to $sourceRoot"; | ||
libraryHaskellDepends = [ | ||
aeson base bytestring containers jsaddle jsaddle-dom lens | ||
network-uri reflex reflex-dom-core text time witherable | ||
network-uri reflex reflex-dom-core reflex-dom-helpers text time | ||
witherable | ||
]; | ||
homepage = "https://github.com/jappeace/bulmex#readme"; | ||
description = "Reflex infused with bulma (css)"; | ||
license = stdenv.lib.licenses.mit; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ mkDerivation, base, fetchgit, reflex, reflex-dom-core, stdenv | ||
, template-haskell, text | ||
}: | ||
mkDerivation { | ||
pname = "reflex-dom-helpers"; | ||
version = "0.2.0.1"; | ||
src = fetchgit { | ||
url = "https://github.com/layer-3-communications/reflex-dom-helpers"; | ||
sha256 = "12k5jr1rif2yi1xa4a43gx1rchj1ywmh4m1wdj00mjslisjdndgm"; | ||
rev = "e247c3ee5f9d957f994aeb57b9fe4d9f0a35beea"; | ||
fetchSubmodules = true; | ||
}; | ||
libraryHaskellDepends = [ | ||
base reflex reflex-dom-core template-haskell text | ||
]; | ||
testHaskellDepends = [ base ]; | ||
homepage = "https://github.com/layer-3-communications/reflex-dom-helpers"; | ||
description = "Html tag helpers for reflex-dom"; | ||
license = stdenv.lib.licenses.bsd3; | ||
} |