nixpkgs/pkgs/development/tools/rep/default.nix

31 lines
681 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, asciidoc-full }:
2020-10-13 20:27:53 +00:00
stdenv.mkDerivation rec {
pname = "rep";
2021-05-03 20:48:27 +00:00
version = "0.2.2";
2020-10-13 20:27:53 +00:00
src = fetchFromGitHub {
owner = "eraserhd";
repo = pname;
rev = "v${version}";
2021-05-03 20:48:27 +00:00
sha256 = "pqmISVm3rYGxRuwKieVpRwXE8ufWnBHEA6h2hrob51s=";
2020-10-13 20:27:53 +00:00
};
nativeBuildInputs = [
asciidoc-full
];
postPatch = ''
substituteInPlace rc/rep.kak --replace '$(rep' '$('"$out/bin/rep"
'';
makeFlags = [ "prefix=$(out)" ];
meta = with lib; {
2020-10-13 20:27:53 +00:00
description = "Single-shot nREPL client";
homepage = "https://github.com/eraserhd/rep";
license = licenses.epl10;
platforms = platforms.all;
maintainers = [ maintainers.eraserhd ];
};
}