Merge staging-next into staging

This commit is contained in:
Frederik Rietdijk
2019-04-30 15:52:19 +02:00
237 changed files with 8482 additions and 2711 deletions
+2 -2
View File
@@ -41,8 +41,8 @@
fetch = {
type = "git";
url = "https://github.com/nsf/termbox-go";
rev = "abe82ce5fb7a42fbd6784a5ceb71aff977e09ed8";
sha256 = "156i8apkga8b3272kjhapyqwspgcfkrr9kpqwc5lii43k4swghpv";
rev = "e2050e41c8847748ec5288741c0b19a8cb26d084";
sha256 = "181b1df2b6fcn5wizq2qqxl1kwqbih5k15n08rx3bcz36q34n23s";
};
}
{
+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 ];
};
}