Unverified Commit 5f3cf79c authored by Donovan Glover's avatar Donovan Glover Committed by GitHub
Browse files

impala: add meta.mainProgram (#478896)

parents ce68ec7a 2e3d2c1b
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";
  };
}
})