8 stdenv.mkDerivation rec {
10 version = "unstable-2019-09-09";
12 src = fetchFromGitHub {
15 rev = "31a06762d34880ff2ed7176ca71bd8a6b91b10d5";
16 sha256 = "0wj3hypqfrjra8mwmn32hs5qs6ic81cq3gn1v0b2fba6vkqcsqfy";
19 buildInputs = [ libedit ];
20 nativeBuildInputs = [ makeWrapper ];
25 install -Dm755 -t $out/bin bin/rappel
26 wrapProgram $out/bin/rappel --prefix PATH : "${nasm}/bin"
32 homepage = "https://github.com/yrp604/rappel";
33 description = "A pretty janky assembly REPL";
34 license = licenses.bsdOriginal;
35 maintainers = [ maintainers.pamplemousse ];
36 platforms = platforms.linux;