1
Fork 0
mirror of https://github.com/RGBCube/alejandra synced 2025-07-30 12:07:46 +00:00

add thanks to contributors

This commit is contained in:
Kevin Amado 2023-05-15 21:40:30 -06:00
parent 5b83d8aa63
commit 9512caae61
4 changed files with 124 additions and 126 deletions

View file

@ -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 = {