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

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 {};
}
);
}