noogle/pasta/flake-module.nix

21 lines
611 B
Nix
Raw Normal View History

{ inputs, ... }: {
2023-12-22 22:34:22 +03:00
perSystem = { self', inputs', pkgs, lib, ... }:
let
nix = inputs'.nix.packages.nix-clangStdenv;
2023-12-22 22:34:22 +03:00
nixpkgs = self'.packages.nixpkgs-migrated;
2023-11-28 19:28:51 +03:00
in
{
packages = {
2023-12-22 22:34:22 +03:00
pasta-meta = pkgs.stdenv.mkDerivation {
name = "pasta-meta";
src = ./.;
buildPhase = ''
echo "\"${builtins.toJSON inputs.nixpkgs-master.rev}\"" > $out
'';
};
pasta = pkgs.callPackage ./default.nix { inherit nixpkgs nix pkgs; };
};
devShells.pastaMaker = pkgs.callPackage ./shell.nix { inherit pkgs nix; };
};
}