nixpkgs/pkgs/development/libraries/haskell/vcswrapper/default.nix
2014-03-11 13:50:50 +01:00

17 lines
495 B
Nix

{ cabal, filepath, hxt, MissingH, mtl, parsec }:
cabal.mkDerivation (self: {
pname = "vcswrapper";
version = "0.0.3";
sha256 = "04gmiiv461qh8fypkkiynipn5jsjqvywkj17ldq5wag4qaspx97x";
isLibrary = true;
isExecutable = true;
buildDepends = [ filepath hxt MissingH mtl parsec ];
meta = {
homepage = "https://github.com/forste/haskellVCSWrapper";
description = "Wrapper for source code management systems";
license = "GPL";
platforms = self.ghc.meta.platforms;
};
})