Trolli Schmittlauch
4259358460
based on work by Farid Zakaria https://github.com/fzakaria/lolcommits-nixpkgs
8 lines
131 B
Nix
8 lines
131 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
with pkgs;
|
|
with stdenv;
|
|
mkShell {
|
|
name = "lolcommits-shell";
|
|
buildInputs = [ bundix ruby ];
|
|
}
|