Merge branch 'master' into staging

This commit is contained in:
Vladimír Čunát
2017-05-18 11:24:18 +02:00
58 changed files with 741 additions and 557 deletions
+4 -4
View File
@@ -1,14 +1,14 @@
{ stdenv, fetchFromGitHub, buildPythonApplication }:
{ stdenv, fetchFromGitHub, pythonPackages }:
buildPythonApplication rec {
pythonPackages.buildPythonApplication rec {
name = "icdiff-${version}";
version = "1.7.3";
version = "1.9.0";
src = fetchFromGitHub {
owner = "jeffkaufman";
repo = "icdiff";
rev = "release-${version}";
sha256 = "1k7dlf2i40flsrvkma1k1vii9hsjwdmwryx65q0n0yj4frv7ky6k";
sha256 = "03gcgj3xsqasvgkr8r0q1ljbw2kd2xmfb21qpxhk9lqqm2gl11sv";
};
meta = with stdenv.lib; {
+3 -3
View File
@@ -4,16 +4,16 @@ with rustPlatform;
buildRustPackage rec {
name = "ripgrep-${version}";
version = "0.5.1";
version = "0.5.2";
src = fetchFromGitHub {
owner = "BurntSushi";
repo = "ripgrep";
rev = "${version}";
sha256 = "1fbvc419gh1rix8v3bh9a63r993kvfizp49p5ps6y22wggpy0k77";
sha256 = "128sfczms14zgfbhgmf84jjlivd4q6i581rxirhz3kmpnnby18rz";
};
depsSha256 = "0vyrcgcmlf3lbp15nip2cm8xv4n6qldfbl0iwy3jb69i2mazi6nm";
depsSha256 = "1kjmv4bn5sicx8g5gyzq2zhxmqsqlgckhcg4ypvnjmcyq1ifiv2m";
preFixup = ''
mkdir -p "$out/man/man1"
+5 -1
View File
@@ -16,11 +16,15 @@ buildGoPackage rec {
goDeps = ./deps.nix;
postInstall = lib.optionalString stdenv.isDarwin ''
install_name_tool -delete_rpath $out/lib -add_rpath $bin $bin/bin/sift
'';
meta = with lib; {
description = "sift is a fast and powerful alternative to grep";
homepage = "https://sift-tool.org";
maintainers = [ maintainers.carlsverre ];
license = licenses.gpl3;
platforms = platforms.linux;
platforms = platforms.all;
};
}