mirror of
https://github.com/nix-community/naersk
synced 2024-11-10 14:14:14 +00:00
d645515b71
The edition attribute is deprecated: warning: flake 'git+file:///home/vin/workspace/vcs/naersk' has deprecated attribute 'edition'
14 lines
550 B
Nix
14 lines
550 B
Nix
{
|
|
description = "Build rust crates in Nix. No configuration, no code generation. IFD and sandbox friendly.";
|
|
|
|
outputs = { self, nixpkgs }:
|
|
let
|
|
forAllSystems = nixpkgs.lib.genAttrs [ "x86_64-linux" "x86_64-darwin" "i686-linux" "aarch64-linux" ];
|
|
in
|
|
{
|
|
# Naersk is not a package, not an app, not a module... It's just a Library
|
|
lib = forAllSystems (system: nixpkgs.legacyPackages."${system}".callPackage ./default.nix { });
|
|
# Useful when composing with other flakes
|
|
overlay = import ./overlay.nix;
|
|
};
|
|
}
|