From 1a64deeb894dc95e2645a75771732c6cc53a79ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Isma=C3=ABl=20Bouya?= Date: Wed, 4 Oct 2023 01:35:06 +0200 Subject: Squash changes containing private information There were a lot of changes since the previous commit, but a lot of them contained personnal information about users. All thos changes got stashed into a single commit (history is kept in a different place) and private information was moved in a separate private repository --- .../mypackages/pkgs/webapps/dokuwiki/plugins/todo.nix | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 flakes/mypackages/pkgs/webapps/dokuwiki/plugins/todo.nix (limited to 'flakes/mypackages/pkgs/webapps/dokuwiki/plugins/todo.nix') diff --git a/flakes/mypackages/pkgs/webapps/dokuwiki/plugins/todo.nix b/flakes/mypackages/pkgs/webapps/dokuwiki/plugins/todo.nix new file mode 100644 index 0000000..a3e03fb --- /dev/null +++ b/flakes/mypackages/pkgs/webapps/dokuwiki/plugins/todo.nix @@ -0,0 +1,18 @@ +{ stdenv, fetchFromGitHub }: +stdenv.mkDerivation rec { + version = "49068ec-master"; + name = "dokuwiki-plugin-todo-${version}"; + src = fetchFromGitHub { + owner = "leibler"; + repo = "dokuwiki-plugin-todo"; + rev = "49068ecea455ea997d1e4a7adab171ccaf8228e8"; + sha256 = "1jaq623kp14fyhamsas5mk9ryqlk4q6x6znijrb5xhcdg3r83gmq"; + }; + installPhase = '' + mkdir $out + cp -a * $out + ''; + passthru = { + pluginName = "todo"; + }; +} -- cgit v1.2.3