mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
haskell-vcswrapper: add version 0.0.3
This commit is contained in:
parent
902d57fe40
commit
d0734f8aaa
16
pkgs/development/libraries/haskell/vcswrapper/default.nix
Normal file
16
pkgs/development/libraries/haskell/vcswrapper/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ 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;
|
||||
};
|
||||
})
|
|
@ -2510,6 +2510,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
|
||||
vcsRevision = callPackage ../development/libraries/haskell/vcs-revision {};
|
||||
|
||||
vcswrapper = callPackage ../development/libraries/haskell/vcswrapper {};
|
||||
|
||||
Vec = callPackage ../development/libraries/haskell/Vec {};
|
||||
|
||||
vect = callPackage ../development/libraries/haskell/vect {};
|
||||
|
|
Loading…
Reference in a new issue