mirror of
https://github.com/NotAShelf/nyxexprs.git
synced 2024-11-01 19:11:15 +00:00
17 lines
382 B
Nix
17 lines
382 B
Nix
{
|
|
lib,
|
|
mpvScripts,
|
|
}:
|
|
mpvScripts.buildLua {
|
|
pname = "save-history";
|
|
version = "unstable-2024-03-18";
|
|
|
|
src = builtins.filterSource (path: type: type != "directory" || (!lib.hasSuffix path ".nix")) ./.;
|
|
|
|
meta = {
|
|
description = "Save history of played files";
|
|
homepage = "https://github.com/notashelf/nyxpkgs";
|
|
maintainers = [lib.maintainers.NotAShelf];
|
|
};
|
|
}
|