Unverified Commit 2e3d2c1b authored by N4CH72HR3R's avatar N4CH72HR3R
Browse files

impala: add meta.mainProgram

parent b064e659
Loading
Loading
Loading
Loading
+4 −3
Original line number Diff line number Diff line
@@ -3,14 +3,14 @@
  rustPlatform,
  fetchFromGitHub,
}:
rustPlatform.buildRustPackage rec {
rustPlatform.buildRustPackage (finalAttrs: {
  pname = "impala";
  version = "0.6.0";

  src = fetchFromGitHub {
    owner = "pythops";
    repo = "impala";
    rev = "v${version}";
    rev = "v${finalAttrs.version}";
    hash = "sha256-FU/8g2zTTHm3Sdbxt9761Z+a0zaJMdAMdHrJIwjUrYs=";
  };

@@ -25,5 +25,6 @@ rustPlatform.buildRustPackage rec {
      nydragon
      bridgesense
    ];
    mainProgram = "impala";
  };
}
})