haskell-vcsgui: add version 0.0.2

This commit is contained in:
Peter Simons 2014-03-11 13:27:27 +01:00
parent d0734f8aaa
commit 1e662766fb
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,16 @@
{ cabal, filepath, gtk3, MissingH, mtl, vcswrapper }:
cabal.mkDerivation (self: {
pname = "vcsgui";
version = "0.0.2";
sha256 = "0kj06l9s4l791ffwdnh7j0nvjvgili18g2jl2ik81n28bzfyq1dx";
isLibrary = true;
isExecutable = true;
buildDepends = [ filepath gtk3 MissingH mtl vcswrapper ];
meta = {
homepage = "https://github.com/forste/haskellVCSGUI";
description = "GUI library for source code management systems";
license = "GPL";
platforms = self.ghc.meta.platforms;
};
})

View File

@ -2508,6 +2508,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
vault = callPackage ../development/libraries/haskell/vault {};
vcsgui = callPackage ../development/libraries/haskell/vcsgui {};
vcsRevision = callPackage ../development/libraries/haskell/vcs-revision {};
vcswrapper = callPackage ../development/libraries/haskell/vcswrapper {};