flakes/notebook/sagemath/flake.nix

23 lines
486 B
Nix
Raw Normal View History

2023-09-03 12:21:14 +02:00
{
description = "Sagemath flake";
2024-02-15 20:35:27 +01:00
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
2023-09-03 12:21:14 +02:00
inputs.flake-utils.url = "github:numtide/flake-utils";
outputs = { self, nixpkgs, flake-utils}:
flake-utils.lib.eachDefaultSystem
(system:
let
pkgs = import nixpkgs {
inherit system;
};
in {
devShells.default = pkgs.mkShell {
buildInputs = with pkgs; [
2024-11-10 20:22:03 +01:00
sageWithDoc
2023-09-03 12:21:14 +02:00
];
};
}
);
}