mirror of
https://github.com/nix-community/noogle.git
synced 2024-11-30 10:29:31 +03:00
14 lines
372 B
Nix
14 lines
372 B
Nix
{ inputs, ... }: {
|
|
perSystem = { self', inputs', pkgs, ... }:
|
|
let
|
|
nix = inputs'.nix.packages.nix-clangStdenv;
|
|
nixpkgs = inputs.nixpkgs-migrated;
|
|
in
|
|
{
|
|
packages = {
|
|
pasta = pkgs.callPackage ./default.nix { inherit nixpkgs nix pkgs; };
|
|
};
|
|
devShells.pastaMaker = pkgs.callPackage ./shell.nix { inherit pkgs nix; };
|
|
};
|
|
}
|