8 lines
161 B
Nix
8 lines
161 B
Nix
|
{ buildDunePackage, nix-gitignore }:
|
||
|
|
||
|
buildDunePackage {
|
||
|
pname = "poplpaper";
|
||
|
version = "0.0";
|
||
|
src = nix-gitignore.gitignoreSource [ ./.gitignore ] ./.;
|
||
|
}
|