Merge pull request #304 from aforemny/haskell-dyre

Add Haskell package dyre
This commit is contained in:
Peter Simons
2013-02-07 07:50:21 -08:00
3 changed files with 36 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
{ cabal, binary, executablePath, filepath, ghcPaths, ioStorage
, time, xdgBasedir
}:
cabal.mkDerivation (self: {
pname = "dyre";
version = "0.8.11";
sha256 = "0sg5csshznbbyvq72s4sps7bkjlkfxiwcy4i3ip83lrxjw1msvr8";
buildDepends = [
binary executablePath filepath ghcPaths ioStorage time xdgBasedir
];
meta = {
homepage = "http://github.com/willdonnelly/dyre";
description = "Dynamic reconfiguration in Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View File

@@ -0,0 +1,14 @@
{ cabal, filepath }:
cabal.mkDerivation (self: {
pname = "xdg-basedir";
version = "0.2.2";
sha256 = "0azlzaxp2dn4l1nr7shsxah2magk1szf6fx0mv75az00qsjw6qg4";
buildDepends = [ filepath ];
meta = {
homepage = "http://github.com/willdonnelly/xdg-basedir";
description = "A basic implementation of the XDG Base Directory specification";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})