Add the Cancer to the project

This commit is contained in:
Marius Drechsler 2026-01-12 13:36:20 +01:00
parent e2fdb9802a
commit 24af548c5a
Signed by: marius
GPG key ID: 56D4131BA3104777
2 changed files with 108 additions and 0 deletions

78
flake.lock generated Normal file
View file

@ -0,0 +1,78 @@
{
"nodes": {
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1731533236,
"narHash": "sha256-l0KFg5HjrsfsO/JpG+r7fRrqm12kzFHyUHqHCVpMMbI=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "11707dc2f618dd54ca8739b309ec4fc024de578b",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1768127708,
"narHash": "sha256-1Sm77VfZh3mU0F5OqKABNLWxOuDeHIlcFjsXeeiPazs=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "ffbc9f8cbaacfb331b6017d5a5abb21a492c9a38",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "nixos-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"nixpkgsPinned": {
"locked": {
"lastModified": 1715721473,
"narHash": "sha256-42okGEXT2cPw3xfSxpb+L/O1YdIM/luq4poIuqEW/Fk=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "0c19708cf035f50d28eb4b2b8e7a79d4dc52f6bb",
"type": "github"
},
"original": {
"owner": "nixos",
"repo": "nixpkgs",
"rev": "0c19708cf035f50d28eb4b2b8e7a79d4dc52f6bb",
"type": "github"
}
},
"root": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": "nixpkgs",
"nixpkgsPinned": "nixpkgsPinned"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

30
flake.nix Normal file
View file

@ -0,0 +1,30 @@
{
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
nixpkgsPinned.url = "github:nixos/nixpkgs/0c19708cf035f50d28eb4b2b8e7a79d4dc52f6bb";
};
outputs = { self, nixpkgs, flake-utils, nixpkgsPinned, ... }: flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs {
inherit system;
};
pkgsPinned = import nixpkgsPinned { inherit system; };
in {
devShell = pkgs.mkShell rec {
buildInputs = [
pkgs.python312
pkgsPinned.ffmpeg_7
];
#nativeBuildInputs = with pkgs; [
#];
};
packages.default = pkgs.mkDerivation {};
}
);
}