mirror of
https://github.com/nix-community/naersk
synced 2024-11-22 19:53:05 +00:00
Basic flake.nix
This commit is contained in:
parent
efafcff2c5
commit
620d8043ad
2 changed files with 13 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1 +1,2 @@
|
||||||
docparse/target
|
docparse/target
|
||||||
|
/flake.lock
|
||||||
|
|
12
flake.nix
Normal file
12
flake.nix
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
{
|
||||||
|
description = "Build rust crates in Nix. No configuration, no code generation. IFD and sandbox friendly.";
|
||||||
|
|
||||||
|
edition = 201909;
|
||||||
|
|
||||||
|
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 {});
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue