Skip to content

add thanks to contributors #392

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

Merged
merged 1 commit into from
May 16, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ Thank you ❤️

- [Kevin Amado](https://github.com/kamadorueda) ~
[Email](mailto:[email protected]),
[Patreon](https://www.patreon.com/kamadorueda).
[LinkedIn](https://www.linkedin.com/in/kamadorueda).
- [Thomas Bereknyei](https://github.com/tomberek).
- [Piegames](https://github.com/piegamesde).
- [Joachim Ernst](https://github.com/0x4A6F).
Expand All @@ -262,7 +262,9 @@ Thank you ❤️
- [Rok Garbas](https://github.com/garbas).
- [Yorick van Pelt](https://github.com/yorickvP).
- [Rehno Lindeque](https://github.com/rehno-lindeque).
- [Rebecca Turner](https://github.com/9999years).
- [Jörg Thalheim](https://github.com/Mic92).
- [Nathan Henrie](https://github.com/n8henrie).
- [Vincent Ambo](https://github.com/tazjin).
- [Jamie Quigley](https://github.com/Sciencentistguy).
- [Loïc Reynier](https://github.com/loicreynier).
Expand Down
15 changes: 1 addition & 14 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -32,20 +32,7 @@
alejandra = final.rustPlatform.buildRustPackage {
pname = "alejandra";
inherit version;
src = final.stdenv.mkDerivation {
name = "src";
builder = builtins.toFile "builder.sh" ''
source $stdenv/setup

mkdir $out
cp -rT --no-preserve=mode,ownership $src $out/src/
cp $cargoLock $out/Cargo.lock
cp $cargoToml $out/Cargo.toml
'';
cargoLock = ./Cargo.lock;
cargoToml = ./Cargo.toml;
src = ./src;
};
src = ./.;
cargoLock.lockFile = ./Cargo.lock;

passthru.tests = {
Expand Down
Loading