-
-
Notifications
You must be signed in to change notification settings - Fork 14.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Rosie init at unstable 2020-01-11 #77777
Rosie init at unstable 2020-01-11 #77777
Conversation
stdenv.mkDerivation rec { | ||
pname = "rosie"; | ||
version = "unstable-2020-01-11"; | ||
src = fetchgit { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Perhaps replace fetchgit
with fetchFromGitLab
, as that's generally faster than a git clone
as fetchgit
does.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can't, need to fetch submodules, fetchFromGitLab doesn't do that
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did have an alternative, which used fetchFromGitLab/fetchFromGitHub with the submodules, perhaps I should resurrect it: KoviRobi@0dcbc21
cb54ab6
to
b1bddc5
Compare
As for platforms, it should in theory work with Darwin too, but I don't have access to anything but linux (x86_64), not sure if I should restrict it to linux until someone can test it |
On Wed, 15 Jan 2020 09:45:27 -0800, Kovacsics Robert ***@***.***> wrote:
As for platforms, it should in theory work with Darwin too, but I don't have access to anything but linux (x86_64)
If you indicate support for Darwin, we can have the buildbot test that
it at least builds for you!
(most of us, I think, don't have access to Darwin builders ourselves,
but happily this sort of thing lets us all work together anyway ^_^)
…
--
You are receiving this because you commented.
Reply to this email directly or view it on GitHub:
#77777 (comment) part: text/html
|
It uses its own Lua (making it use a generic Lua is work-in-progress).
b1bddc5
to
51e137b
Compare
Added platforms to be linux and darwin, I used a colleague's laptop to test it too, so it works not just builds :) Anything else? |
New bugfix release coming soon, so I will change this from the unstable when that's out |
A small niggle is the emacs & vim syntax highlight files. The neovim works, no idea about vanilla vim, emacs works if you do |
@GrahamcOfBorg build rosie |
Whoa #77777 |
Motivation for this change
Packages request #73921. A supercharged alternative to regular expressions (regex), matching patterns against any input text.
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
./result/bin/
)nix path-info -S
before and after)Notes
(require 'rpl-mode)
before being able toM-x rpl-mode
vimPlugins.syntastic
in the output directory but couldn't get it to auto-load usingvim_configurable.customize
(neovim picks up package from~/.nix-profile/share/nvim/site
whennix-env -i
'd)(It pleases me that this is pull request 77777, just because it's the same digits.)
Edit: fixes #73921