impala: add meta.mainProgram (#478896)

This commit is contained in:
Donovan Glover
2026-01-12 19:51:30 +00:00
committed by GitHub
+4 -3
View File
@@ -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";
};
}
})