haskell-hoodle: re-generate with cabal2nix

This commit is contained in:
Peter Simons 2014-01-20 18:04:59 +01:00
parent e217fd9ae8
commit b4e1774272

View File

@ -1,18 +1,20 @@
{ cabal, cmdargs, configurator, dyre, hoodleCore, mtl }:
{ cabal, cmdargs, configurator, dyre, filepath, hoodleCore, mtl }:
cabal.mkDerivation (self: {
pname = "hoodle";
version = "0.2.2.1";
sha256 = "1qkyyzfmprhniwarnq6cdmv1r6605b3h2lsc1rlalxhq6jh5gamd";
isLibrary = false;
isExecutable = true;
buildDepends = [ cmdargs configurator dyre hoodleCore mtl ];
#jailbreak = true;
isLibrary = true;
isExecutable = true;
buildDepends = [
cmdargs configurator dyre filepath hoodleCore mtl
];
jailbreak = true;
meta = {
homepage = "http://ianwookim.org/hoodle";
description = "Pen notetaking program written in haskell";
description = "Executable for hoodle";
license = self.stdenv.lib.licenses.gpl3;
platforms = self.ghc.meta.platforms;
maintainers = [ self.stdenv.lib.maintainers.ianwookim];
maintainers = [ self.stdenv.lib.maintainers.ianwookim ];
};
})