Sign in
apache
/
security-site
/
refs/heads/tools
/
.
/
scripts
/
shell.nix
blob: a6547b76c0ab3d665f41a8d9e0e22ba872dfd18e [
file
]
{
pkgs
?
import
<nixpkgs>
{
}
}:
pkgs
.
mkShell
{
buildInputs
=
[
(
pkgs
.
python3
.
withPackages
(
p
:
[
p
.
python
-
slugify
p
.
rdflib
]))
(
pkgs
.
callPackage
./
cve4to5
.
nix
{})
];
}