mirror of
https://gitlab.com/rensa-nix/devshell.git
synced 2026-02-02 07:15:09 +01:00
chore: initial commit
This commit is contained in:
commit
fbacfc149b
21 changed files with 748 additions and 0 deletions
34
flake.nix
Normal file
34
flake.nix
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
inputs = {
|
||||
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
||||
std = {
|
||||
url = "github:divnix/std";
|
||||
inputs = {
|
||||
nixpkgs.follows = "nixpkgs";
|
||||
lib.follows = "nixpkgs";
|
||||
paisano-tui.follows = "";
|
||||
dmerge.follows = "";
|
||||
blank.follows = "";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
outputs = {
|
||||
self,
|
||||
std,
|
||||
...
|
||||
} @ inputs:
|
||||
std.growOn
|
||||
{
|
||||
inherit inputs;
|
||||
cellsFrom = ./.nix;
|
||||
cellBlocks = with std.blockTypes; [
|
||||
(devshells "devShells")
|
||||
(pkgs "tests")
|
||||
(runnables "benchmark")
|
||||
];
|
||||
}
|
||||
{
|
||||
packages = std.harvest self [["repo" "tests"] ["repo" "benchmark"]];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue