impala: add meta.mainProgram

This commit is contained in:
N4CH72HR3R
2026-01-12 18:14:33 +01:00
parent b064e65912
commit 2e3d2c1b0b
+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";
};
}
})