12 lines
156 B
Nix
12 lines
156 B
Nix
|
{ pkgs }:
|
||
|
|
||
|
pkgs.writeShellApplication {
|
||
|
name = "drafts";
|
||
|
|
||
|
runtimeInputs = with pkgs; [ gnugrep ];
|
||
|
|
||
|
text = ''
|
||
|
grep -r 'draft: true' source
|
||
|
'';
|
||
|
}
|