2016-12-30 08:30:13 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, fetchpatch, makeWrapper, nim, pcre, tinycc }:
|
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "nrpl";
|
2016-12-30 08:30:13 +00:00
|
|
|
version = "20150522";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "wheineman";
|
|
|
|
repo = "nrpl";
|
|
|
|
rev = "6d6c189ab7d1c905cc29dc678d66e9e132026f69";
|
|
|
|
sha256 = "1cly9lhrawnc42r31b7r0p0i6hcx8r00aa17gv7w9pcpj8ngb4v2";
|
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ makeWrapper nim pcre ];
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
2020-04-01 02:11:51 +01:00
|
|
|
url = "https://patch-diff.githubusercontent.com/raw/wheineman/nrpl/pull/12.patch";
|
2016-12-30 08:30:13 +00:00
|
|
|
name = "update_for_new_nim.patch";
|
|
|
|
sha256 = "1zff7inhn3l1jnxcnidy705lzi3wqib1chf4rayh1g9i23an7wg1";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2019-10-30 11:34:47 +00:00
|
|
|
NIX_LDFLAGS = "-lpcre";
|
2016-12-30 08:30:13 +00:00
|
|
|
|
2018-10-31 21:04:00 +00:00
|
|
|
buildPhase = ''
|
|
|
|
HOME=$TMPDIR
|
|
|
|
nim c -d:release nrpl.nim
|
|
|
|
'';
|
2016-12-30 08:30:13 +00:00
|
|
|
|
|
|
|
installPhase = "install -Dt $out/bin nrpl";
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
wrapProgram $out/bin/nrpl \
|
|
|
|
--prefix PATH : ${lib.makeBinPath [ nim tinycc ]}
|
|
|
|
'';
|
|
|
|
|
2021-01-23 12:26:19 +00:00
|
|
|
meta = with lib; {
|
2016-12-30 08:30:13 +00:00
|
|
|
description = "REPL for the Nim programming language";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/wheineman/nrpl";
|
2016-12-30 08:30:13 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ peterhoeg ];
|
|
|
|
platforms = with platforms; linux ++ darwin;
|
|
|
|
};
|
|
|
|
}
|