Unverified Commit 35ca1b10 authored by jopejoe1's avatar jopejoe1 Committed by GitHub
Browse files

alistral: build with all features (#437898)

parents ecca6cdc 92c3b997
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -22358,6 +22358,12 @@
    githubId = 2660;
    name = "Russell Sim";
  };
  RustyNova = {
    email = "rusty.nova.jsb@gmail.com";
    github = "RustyNova016";
    githubId = 50844553;
    name = "RustyNova";
  };
  rutherther = {
    name = "Rutherther";
    email = "rutherther@proton.me";
+8 −1
Original line number Diff line number Diff line
@@ -21,6 +21,10 @@ rustPlatform.buildRustPackage (finalAttrs: {

  cargoHash = "sha256-TyxeuDMmoRvIVaapA/KstFnARPpPv9h19Bg3/XnwQWs=";

  buildNoDefaultFeatures = true;
  # Would be cleaner with an "--all-features" option
  buildFeatures = [ "full" ];

  nativeBuildInputs = [
    pkg-config
  ];
@@ -39,7 +43,10 @@ rustPlatform.buildRustPackage (finalAttrs: {
    changelog = "https://github.com/RustyNova016/Alistral/blob/${finalAttrs.src.tag}/CHANGELOG.md";
    description = "Power tools for Listenbrainz";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ jopejoe1 ];
    maintainers = with lib.maintainers; [
      jopejoe1
      RustyNova
    ];
    mainProgram = "alistral";
  };
})