Merge pull request #304886 from anthonyroussel/puppet-bolt

puppet-bolt: fix pname
This commit is contained in:
Aleksana 2024-05-01 20:54:47 +08:00 committed by GitHub
commit 096991a00e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -7,7 +7,7 @@
testers,
}:
bundlerApp {
(bundlerApp {
pname = "bolt";
gemdir = ./.;
@ -42,4 +42,6 @@ bundlerApp {
maintainers = with lib.maintainers; [ uvnikita anthonyroussel ];
platforms = lib.platforms.unix;
};
}
}).overrideAttrs (old: {
name = "puppet-bolt-${(import ./gemset.nix).bolt.version}";
})