aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/misc
diff options
context:
space:
mode:
authorPamplemousse <xav.maso@gmail.com>2019-09-07 12:25:02 -0700
committerPamplemousse <xav.maso@gmail.com>2019-09-07 21:12:47 -0700
commit77783268da5dbc55023c4f263696da680997eca7 (patch)
treef4cc7a283a5cca60fec17ef9cd49d410b083c965 /pkgs/development/misc
parentfb325604861e1598ede0d73f4f5fcbc721ae98ad (diff)
rappel: init at unstable-2019-07-08
Diffstat (limited to 'pkgs/development/misc')
-rw-r--r--pkgs/development/misc/rappel/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/development/misc/rappel/default.nix b/pkgs/development/misc/rappel/default.nix
new file mode 100644
index 00000000000..02c31fd4d69
--- /dev/null
+++ b/pkgs/development/misc/rappel/default.nix
@@ -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;
+ };
+}