add hoodle (pen notetaking program written in haskell) to nixpkgs

This commit is contained in:
Ian-Woo Kim
2014-01-20 15:41:17 +01:00
committed by Rok Garbas
parent 8890492872
commit 7b51e24de9
12 changed files with 205 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
{ cabal, cereal, either, lens, mtl, safecopy, transformers, transformersFree, uuid }:
cabal.mkDerivation (self: {
pname = "coroutine-object";
version = "0.2.0.0";
sha256 = "1jl5glnk4ildjrxyxscxd0v7xfqbd9vpv5gaxygsfsbfr1zizp3s";
buildDepends = [ cereal either either lens mtl safecopy transformers transformersFree uuid ];
#jailbreak = true;
meta = {
homepage = "http://ianwookim.org/hoodle";
description = "Object-oriented programming realization using coroutine";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ianwookim ];
};
})