Merge master into staging-next

This commit is contained in:
Frederik Rietdijk
2019-04-29 13:46:20 +02:00
201 changed files with 6657 additions and 1860 deletions
+27
View File
@@ -0,0 +1,27 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
version = "1.1";
pname = "qgrep";
src = fetchFromGitHub {
owner = "zeux";
repo = "qgrep";
rev = "v${version}";
sha256 = "046ccw34vz2k5jn6gyxign5gs2qi7i50jy9b74wqv7sjf5zayrh0";
fetchSubmodules = true;
};
installPhase = ''
install -Dm755 qgrep $out/bin/qgrep
'';
meta = with stdenv.lib; {
description = "Fast regular expression grep for source code with incremental index updates";
homepage = https://github.com/zeux/qgrep;
license = licenses.mit;
maintainers = [ maintainers.yrashk ];
platforms = platforms.all;
};
}
+24
View File
@@ -0,0 +1,24 @@
{ stdenv, fetchFromGitHub, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "sd";
version = "0.5.0";
src = fetchFromGitHub {
owner = "chmln";
repo = pname;
rev = "sd-${version}";
sha256 = "1y44qizciir75d1srwm1mlskhflab2b6153d19vblw410in82f5d";
};
cargoSha256 = "1gls68lw8a2c3gsav70l2wasrgav68q5w1nf50jsrbqq9kb4i7nb";
meta = with stdenv.lib; {
description = "Intuitive find & replace CLI (sed alternative)";
homepage = https://github.com/chmln/sd;
license = licenses.mit;
platforms = platforms.all;
maintainers = [ maintainers.amar1729 ];
};
}