biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / development / tools / rep / default.nix
blob78b9c2612e42217abc47fd579713849c58edad2e
1 { lib, stdenv, fetchFromGitHub, asciidoc-full }:
3 stdenv.mkDerivation rec {
4   pname = "rep";
5   version = "0.2.2";
7   src = fetchFromGitHub {
8     owner = "eraserhd";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "pqmISVm3rYGxRuwKieVpRwXE8ufWnBHEA6h2hrob51s=";
12   };
14   nativeBuildInputs = [
15     asciidoc-full
16   ];
18   postPatch = ''
19     substituteInPlace rc/rep.kak --replace '$(rep' '$('"$out/bin/rep"
20   '';
21   makeFlags = [ "prefix=$(out)" ];
23   meta = with lib; {
24     description = "Single-shot nREPL client";
25     mainProgram = "rep";
26     homepage = "https://github.com/eraserhd/rep";
27     license = licenses.epl10;
28     platforms = platforms.all;
29     maintainers = [ maintainers.eraserhd ];
30   };