You've already forked Openness-Score
mirror of
https://github.com/Dasharo/Openness-Score.git
synced 2026-03-06 14:54:49 -08:00
ea95f4a0ba
Signed-off-by: Maciej Pijanowski <maciej.pijanowski@3mdeb.com>
26 lines
369 B
Nix
26 lines
369 B
Nix
{ pkgs, ... }:
|
|
|
|
with pkgs;
|
|
{
|
|
packages = [
|
|
coreboot-utils
|
|
uefitool
|
|
lzma
|
|
stdenv.cc.cc.lib
|
|
glib
|
|
];
|
|
|
|
languages.python.enable = true;
|
|
languages.python.venv.enable = true;
|
|
|
|
enterShell = ''
|
|
echo "Welcome!"
|
|
pip install -r ./requirements.txt
|
|
'';
|
|
|
|
# pre-commit.hooks = {
|
|
# # lint shell scripts
|
|
# shellcheck.enable = true;
|
|
# };
|
|
}
|