mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-09 22:45:08 +00:00
17 lines
499 B
Nix
17 lines
499 B
Nix
|
{ cabal, bindingsDSL, openssl, zlib, git }:
|
||
|
|
||
|
cabal.mkDerivation (self: {
|
||
|
pname = "hlibgit2";
|
||
|
version = "0.18.0.13";
|
||
|
sha256 = "1bslg51kkhnwm48kxaad4izq3xmzv6dpqy10a5kh16vr5zy3w5hz";
|
||
|
buildDepends = [ bindingsDSL zlib ];
|
||
|
testDepends = [ git ];
|
||
|
extraLibraries = [ openssl ];
|
||
|
meta = {
|
||
|
description = "Low-level bindings to libgit2";
|
||
|
license = self.stdenv.lib.licenses.mit;
|
||
|
platforms = self.ghc.meta.platforms;
|
||
|
maintainers = [ self.stdenv.lib.maintainers.ianwookim ];
|
||
|
};
|
||
|
})
|