tijdelijk-te-laat/trivial/flake.nix

22 lines
527 B
Nix
Raw Permalink Normal View History

2023-10-22 18:13:51 +02:00
{ description = "Extremely basic flake";
2023-10-22 18:11:56 +02:00
inputs = {
2024-03-09 02:39:58 +01:00
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
2023-10-22 18:11:56 +02:00
};
outputs = { self, nixpkgs, flake-utils}:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in {
2024-03-09 02:39:58 +01:00
packages = {
2023-10-22 18:11:56 +02:00
default = throw "put derivation information here";
};
2023-10-22 19:19:19 +02:00
2023-10-22 18:11:56 +02:00
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
(throw "put packages here")
];
};
2023-10-22 19:19:19 +02:00
2023-10-22 18:11:56 +02:00
});
}