feat: Output shared library in Nix flake #48

Merged
aniva merged 16 commits from feature/lib into dev 2024-03-16 19:01:04 -07:00
2 changed files with 9 additions and 0 deletions
Showing only changes of commit 021d0b5b7d - Show all commits

View File

@ -2,6 +2,7 @@ import Pantograph.Goal
import Pantograph.Protocol import Pantograph.Protocol
import Pantograph.Serial import Pantograph.Serial
import Pantograph.Environment import Pantograph.Environment
import Pantograph.Library
import Lean.Data.HashMap import Lean.Data.HashMap
namespace Pantograph namespace Pantograph

8
Pantograph/Library.lean Normal file
View File

@ -0,0 +1,8 @@
import Pantograph.Version
namespace Pantograph
@[export pantograph_version]
def pantograph_version: String := version
end Pantograph