naersk/flake.nix
Cole Helbling d645515b71 flake: remove edition and format
The edition attribute is deprecated:

    warning: flake 'git+file:///home/vin/workspace/vcs/naersk' has deprecated attribute 'edition'
2020-10-29 10:16:55 +01:00

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