Merge master into staging-next
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
}
|
||||
@@ -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 ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user