8 lines
131 B
Nix
8 lines
131 B
Nix
|
{ pkgs ? import <nixpkgs> { } }:
|
||
|
with pkgs;
|
||
|
with stdenv;
|
||
|
mkShell {
|
||
|
name = "lolcommits-shell";
|
||
|
buildInputs = [ bundix ruby ];
|
||
|
}
|