Compare commits

...

2 commits

Author SHA1 Message Date
Bruno BELANYI ec92d2c6a1 flake: fix 'nix run' 2021-03-29 22:52:57 +02:00
Antoine Martin c304219bbb repo: add sourcehut mirror 2021-03-29 22:20:25 +02:00
2 changed files with 5 additions and 1 deletions

1
.lohr
View file

@ -1,2 +1,3 @@
git@github.com:alarsyo/lohr
git@gitlab.com:alarsyo/lohr
git@git.sr.ht:~alarsyo/lohr

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