caprine: remove redundant mainProgram specification

Remove per-system meta.mainProgram specification.

So far, both Linux and Darwin version of Caprine names its executable
`caprine`.

Use `caprine` as the default mainProgam. Systems added in the future
could override this with custom meta attributes.
This commit is contained in:
Yueh-Shun Li 2023-09-27 03:00:11 +08:00
parent 50dad20a8f
commit d40fb8811a
2 changed files with 0 additions and 2 deletions

View file

@ -43,6 +43,5 @@ in
meta = metaCommon // {
platforms = [ "x86_64-linux" ];
mainProgram = "caprine";
};
})

View file

@ -30,6 +30,5 @@ stdenvNoCC.mkDerivation {
meta = metaCommon // {
platforms = with lib.platforms; darwin;
mainProgram = "caprine";
};
}