tijdelijk-te-laat/trivial/flake.nix

22 lines
527 B
Nix
Raw Normal View History

2023-10-22 18:13:51 +02:00
{ description = "Extremely basic flake";
2023-10-22 18:11:56 +02:00
inputs = {
2023-12-09 02:09:15 +01:00
nixpkgs.url = github:nixos/nixpkgs/nixos-unstable;
2023-10-22 18:11:56 +02:00
flake-utils.url = github:numtide/flake-utils;
};
outputs = { self, nixpkgs, flake-utils}:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = import nixpkgs { inherit system; };
in {
packages = rec {
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
});
}