update basecamp

This commit is contained in:
Asger Juul Brunshøj 2024-08-22 12:50:22 +02:00
parent a46c0d8891
commit c087394a35
2 changed files with 11 additions and 17 deletions

12
flake.lock generated
View File

@ -8,11 +8,11 @@
"rust-overlay": "rust-overlay" "rust-overlay": "rust-overlay"
}, },
"locked": { "locked": {
"lastModified": 1715174764, "lastModified": 1724310952,
"narHash": "sha256-T5rOAfiJsBRp6sc/cs+rpkWUwnW6WhUaYyhYlQw8g2g=", "narHash": "sha256-Hpe6K3kZpVvpG9bz8dvZz4gJOq+5sr93IQ7cfoFjlw4=",
"owner": "plul", "owner": "plul",
"repo": "basecamp", "repo": "basecamp",
"rev": "3be631062c1ce670ce62a406f0bdadf408724916", "rev": "5b461e4d3ec0f8c0d99cc7c90d371ccd86aacf41",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -41,11 +41,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1715499532, "lastModified": 1724300212,
"narHash": "sha256-9UJLb8rdi2VokYcfOBQHUzP3iNxOPNWcbK++ENElpk0=", "narHash": "sha256-x3jl6OWTs+L9C7EtscuWZmGZWI0iSBDafvg3X7JMa1A=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "af8b9db5c00f1a8e4b83578acc578ff7d823b786", "rev": "4de4818c1ffa76d57787af936e8a23648bda6be4",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -9,16 +9,10 @@
outputs = outputs =
inputs@{ self, ... }: inputs@{ self, ... }:
{ {
devShells."x86_64-linux".default = inputs.basecamp.mkDevShell { devShells."x86_64-linux".default =
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; }; let
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; };
config = { in
just.enable = true; inputs.basecamp.mkShell pkgs { packages = [ pkgs.solvespace ]; };
markdown.enable = true;
nix.enable = true;
};
packages = pkgs: [ pkgs.solvespace ];
};
}; };
} }