9 lines
119 B
Nix
9 lines
119 B
Nix
|
let
|
||
|
pkgs = import <nixpkgs> {};
|
||
|
in pkgs.mkShell {
|
||
|
name = "nut-score";
|
||
|
buildInputs = with pkgs; [
|
||
|
yarn
|
||
|
];
|
||
|
}
|