flake: fix 'nix run'

rocket-stable
Bruno BELANYI 2021-03-29 22:47:42 +02:00 committed by Antoine Martin
parent c304219bbb
commit ec92d2c6a1
1 changed files with 4 additions and 1 deletions

View File

@ -34,7 +34,10 @@
};
in
{
defaultPackage = naersk-lib.buildPackage ./.;
defaultPackage = naersk-lib.buildPackage {
src = ./.;
pname = "lohr";
};
defaultApp = flake-utils.lib.mkApp {
drv = self.defaultPackage."${system}";