puppet-bolt: fix pname

This commit is contained in:
Anthony Roussel 2024-04-30 22:03:44 +02:00
parent c4b3e96167
commit 155b3e9e72
No known key found for this signature in database
GPG Key ID: 9DC4987B1A55E75E

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}";
})