rep: init at 0.2.1
This commit is contained in:
parent
a5f01cbe93
commit
2c9ffab4e2
30
pkgs/development/tools/rep/default.nix
Normal file
30
pkgs/development/tools/rep/default.nix
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, asciidoc-full }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "rep";
|
||||||
|
version = "0.2.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "eraserhd";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1p0dbaj7f4irzzw1m44x3b3j3jjij9i4rs83wkrpiamlq61077di";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
asciidoc-full
|
||||||
|
];
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
substituteInPlace rc/rep.kak --replace '$(rep' '$('"$out/bin/rep"
|
||||||
|
'';
|
||||||
|
makeFlags = [ "prefix=$(out)" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Single-shot nREPL client";
|
||||||
|
homepage = "https://github.com/eraserhd/rep";
|
||||||
|
license = licenses.epl10;
|
||||||
|
platforms = platforms.all;
|
||||||
|
maintainers = [ maintainers.eraserhd ];
|
||||||
|
};
|
||||||
|
}
|
@ -6609,6 +6609,8 @@ in
|
|||||||
|
|
||||||
redsocks = callPackage ../tools/networking/redsocks { };
|
redsocks = callPackage ../tools/networking/redsocks { };
|
||||||
|
|
||||||
|
rep = callPackage ../development/tools/rep { };
|
||||||
|
|
||||||
reredirect = callPackage ../tools/misc/reredirect { };
|
reredirect = callPackage ../tools/misc/reredirect { };
|
||||||
|
|
||||||
retext = libsForQt5.callPackage ../applications/editors/retext { };
|
retext = libsForQt5.callPackage ../applications/editors/retext { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user