1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-17 19:21:04 +00:00

ceph-csi: nixfmt format

This commit is contained in:
superherointj 2024-08-12 17:03:09 -03:00
parent 06f1086c5b
commit 861d2d667f

View file

@ -1,4 +1,10 @@
{ ceph, fetchFromGitHub, go, lib, stdenv }:
{
ceph,
fetchFromGitHub,
go,
lib,
stdenv,
}:
stdenv.mkDerivation rec {
pname = "ceph-csi";
@ -36,6 +42,9 @@ stdenv.mkDerivation rec {
license = lib.licenses.asl20;
mainProgram = "cephcsi";
maintainers = with lib.maintainers; [ johanot ];
platforms = [ "x86_64-linux" "aarch64-linux" ];
platforms = [
"x86_64-linux"
"aarch64-linux"
];
};
}