mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
stump: enable auto update PRs via nix-update-script
This commit is contained in:
parent
a7b7c60952
commit
4387325b40
1 changed files with 10 additions and 1 deletions
|
|
@ -16,6 +16,7 @@
|
|||
cacert,
|
||||
pkg-config,
|
||||
makeWrapper,
|
||||
nix-update-script,
|
||||
}:
|
||||
rustPlatform.buildRustPackage (finalAttrs: {
|
||||
pname = "stump";
|
||||
|
|
@ -101,7 +102,15 @@ rustPlatform.buildRustPackage (finalAttrs: {
|
|||
--set-default API_VERSION v1
|
||||
'';
|
||||
|
||||
passthru.tests = nixosTests.stump;
|
||||
passthru = {
|
||||
tests = nixosTests.stump;
|
||||
updateScript = nix-update-script {
|
||||
extraArgs = [
|
||||
"--subpackage"
|
||||
"frontend"
|
||||
];
|
||||
};
|
||||
};
|
||||
|
||||
meta = {
|
||||
homepage = "https://stumpapp.dev/";
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue