mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 19:21:04 +00:00
mycelium: reformat with nixfmt
This commit is contained in:
parent
2ecaac9550
commit
e44b996295
|
@ -1,12 +1,13 @@
|
||||||
{ lib
|
{
|
||||||
, rustPlatform
|
lib,
|
||||||
, fetchFromGitHub
|
rustPlatform,
|
||||||
, stdenv
|
fetchFromGitHub,
|
||||||
, openssl
|
stdenv,
|
||||||
, darwin
|
openssl,
|
||||||
, nixosTests
|
darwin,
|
||||||
, nix-update-script
|
nixosTests,
|
||||||
, versionCheckHook
|
nix-update-script,
|
||||||
|
versionCheckHook,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
|
@ -45,7 +46,9 @@ rustPlatform.buildRustPackage rec {
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = nix-update-script { };
|
updateScript = nix-update-script { };
|
||||||
tests = { inherit (nixosTests) mycelium; };
|
tests = {
|
||||||
|
inherit (nixosTests) mycelium;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -53,7 +56,11 @@ rustPlatform.buildRustPackage rec {
|
||||||
homepage = "https://github.com/threefoldtech/mycelium";
|
homepage = "https://github.com/threefoldtech/mycelium";
|
||||||
changelog = "https://github.com/threefoldtech/mycelium/blob/${src.rev}/CHANGELOG.md";
|
changelog = "https://github.com/threefoldtech/mycelium/blob/${src.rev}/CHANGELOG.md";
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ flokli matthewcroughan rvdp ];
|
maintainers = with maintainers; [
|
||||||
|
flokli
|
||||||
|
matthewcroughan
|
||||||
|
rvdp
|
||||||
|
];
|
||||||
mainProgram = "mycelium";
|
mainProgram = "mycelium";
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue