nixpkgs/pkgs/by-name/ro/rosie/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
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.
2024-11-09 20:04:51 +08:00

64 lines
1.9 KiB
Nix

{ lib
, stdenv
, fetchgit
, libbsd
, readline
,
}:
stdenv.mkDerivation rec {
pname = "rosie";
version = "1.4.0";
src = fetchgit {
url = "https://gitlab.com/rosie-pattern-language/rosie";
rev = "79605830e32dff33544f9ebe7d7be752c29424b5";
sha256 = "sha256-n7Tem/4ZjizfCPT21teYK2wZ/gVpgjHUim9s7soEwbM=";
fetchSubmodules = true;
};
postUnpack = ''
# The Makefile calls git to update submodules, unless this file exists
touch ${src.name}/submodules/~~present~~
'';
preConfigure = ''
patchShebangs src/build_info.sh
# rosie is ran as part of `make check`,
# and so needs to be patched in preConfigure.
patchShebangs rosie
# Part of the same Makefile target which calls git to update submodules
ln -s src submodules/lua/include
# ldconfig is irrelevant, disable it inside `make installforce`.
sed -iE 's/ldconfig/echo skippin ldconfig/' Makefile
sed -iE '/ld.so.conf.d/d' Makefile
'';
preInstall = lib.optionalString stdenv.hostPlatform.isDarwin ''
install_name_tool -add_rpath $out/lib build/bin/rosie
install_name_tool -id $out/lib/librosie.dylib build/lib/librosie.dylib
'';
postInstall = ''
mkdir -p $out/share/emacs/site-lisp $out/share/vim-plugins $out/share/nvim
mv $out/lib/rosie/extra/emacs/* $out/share/emacs/site-lisp/
mv $out/lib/rosie/extra/vim $out/share/vim-plugins/rosie
ln -s $out/share/vim-plugins/rosie $out/share/nvim/site
'';
# librosie.so is dlopen'ed , so we disable ELF patching to preserve RUNPATH .
dontPatchELF = true;
makeFlags = [ "DESTDIR=${placeholder "out"}" ];
buildInputs = [ libbsd readline ];
meta = with lib; {
homepage = "https://rosie-lang.org";
description = "Tools for searching using parsing expression grammars";
mainProgram = "rosie";
license = licenses.mit;
maintainers = with maintainers; [ kovirobi ];
platforms = with platforms; linux ++ darwin;
};
}