mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 14:43:37 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
40 lines
868 B
Nix
40 lines
868 B
Nix
{ fetchFromGitHub
|
|
, libedit
|
|
, makeWrapper
|
|
, nasm
|
|
, lib, stdenv
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "rappel";
|
|
version = "unstable-2019-09-09";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "yrp604";
|
|
repo = "rappel";
|
|
rev = "31a06762d34880ff2ed7176ca71bd8a6b91b10d5";
|
|
sha256 = "0wj3hypqfrjra8mwmn32hs5qs6ic81cq3gn1v0b2fba6vkqcsqfy";
|
|
};
|
|
|
|
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 lib; {
|
|
homepage = "https://github.com/yrp604/rappel";
|
|
description = "Pretty janky assembly REPL";
|
|
mainProgram = "rappel";
|
|
license = licenses.bsdOriginal;
|
|
maintainers = [ maintainers.pamplemousse ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|