This commit is contained in:
2021-08-02 22:12:33 +02:00
parent fed29ebbbe
commit 7b3498bd27
57 changed files with 2778 additions and 0 deletions

17
shell.nix Normal file
View File

@@ -0,0 +1,17 @@
let
pkgs = import (fetchTarball "https://github.com/NixOS/nixpkgs/archive/87807e64a5ef5206b745a40af118c7be8db73681.tar.gz") {};
fhs = pkgs.buildFHSUserEnv {
name = "my-fhs-environment";
targetPkgs = _: [
pkgs.python39
pkgs.python39Packages.virtualenv
pkgs.olm
pkgs.glibc
];
profile = ''
'';
};
in fhs.env