1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00

Merge pull request #32276 from WilliButz/packageUpdates

pgtap: 0.97.0 -> 0.98.0
highlight: 3.40 -> 3.41
This commit is contained in:
adisbladis 2017-12-04 22:10:29 +08:00 committed by GitHub
commit 3130c112da
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -2,13 +2,13 @@
stdenv.mkDerivation rec {
name = "pgtap-${version}";
version = "0.97.0";
version = "0.98.0";
src = fetchFromGitHub {
owner = "theory";
repo = "pgtap";
rev = "v${version}";
sha256 = "1vzc8pxzi0rbywmrvx7i5awngsvzcz75i4jl9bk2vqr223chax6f";
sha256 = "17r3b409k05pbypmwdwgm1fl669jc6a1391szyxizx784k44a369";
};
nativeBuildInputs = [ postgresql perl perlPackages.TAPParserSourceHandlerpgTAP which ];

View file

@ -4,13 +4,13 @@ with stdenv.lib;
stdenv.mkDerivation rec {
name = "highlight-${version}";
version = "3.40";
version = "3.41";
src = fetchFromGitHub {
owner = "andre-simon";
repo = "highlight";
rev = "${version}";
sha256 = "0bkywhz4y10qcajimdha1ck5mvn7fsrv3yn8nd6rqbva39gbfmfd";
sha256 = "163ghkyv3v6v200pskajlsz6sbq3hi31qx7abjcbwc0dajqfngvj";
};
nativeBuildInputs = [ pkgconfig ] ++ optional stdenv.isDarwin gcc ;