mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-25 03:17:13 +00:00
19 lines
599 B
Nix
19 lines
599 B
Nix
|
{ cabal, cmdargs, configurator, dyre, 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;
|
||
|
meta = {
|
||
|
homepage = "http://ianwookim.org/hoodle";
|
||
|
description = "Pen notetaking program written in haskell";
|
||
|
license = self.stdenv.lib.licenses.gpl3;
|
||
|
platforms = self.ghc.meta.platforms;
|
||
|
maintainers = [ self.stdenv.lib.maintainers.ianwookim];
|
||
|
};
|
||
|
})
|