rappel: init at unstable-2019-07-08
This commit is contained in:
parent
fb32560486
commit
77783268da
38
pkgs/development/misc/rappel/default.nix
Normal file
38
pkgs/development/misc/rappel/default.nix
Normal file
@ -0,0 +1,38 @@
|
|||||||
|
{ fetchFromGitHub
|
||||||
|
, libedit
|
||||||
|
, makeWrapper
|
||||||
|
, nasm
|
||||||
|
, stdenv
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "rappel";
|
||||||
|
version = "unstable-2019-07-08";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "yrp604";
|
||||||
|
repo = "rappel";
|
||||||
|
rev = "95a776f850cf6a7c21923a2100b605408ef038de";
|
||||||
|
sha256 = "0fmd15xa6hswh3x48av4g1sf6rncbiinbj7gbw1ffvqsbcfnsgcr";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libedit ];
|
||||||
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
install -Dm755 -t $out/bin bin/rappel
|
||||||
|
wrapProgram $out/bin/rappel --prefix PATH : "${nasm}/bin"
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/yrp604/rappel";
|
||||||
|
description = "A pretty janky assembly REPL";
|
||||||
|
license = licenses.bsdOriginal;
|
||||||
|
maintainers = [ maintainers.pamplemousse ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
@ -9109,6 +9109,8 @@ in
|
|||||||
|
|
||||||
mspdebug = callPackage ../development/misc/msp430/mspdebug.nix { };
|
mspdebug = callPackage ../development/misc/msp430/mspdebug.nix { };
|
||||||
|
|
||||||
|
rappel = callPackage ../development/misc/rappel/default.nix { };
|
||||||
|
|
||||||
pharo-vms = callPackage ../development/pharo/vm { };
|
pharo-vms = callPackage ../development/pharo/vm { };
|
||||||
pharo = pharo-vms.multi-vm-wrapper;
|
pharo = pharo-vms.multi-vm-wrapper;
|
||||||
pharo-cog32 = pharo-vms.cog32;
|
pharo-cog32 = pharo-vms.cog32;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user