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 --- flakes/mypackages/overlays/kanboard/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 flakes/mypackages/overlays/kanboard/default.nix (limited to 'flakes/mypackages/overlays/kanboard') diff --git a/flakes/mypackages/overlays/kanboard/default.nix b/flakes/mypackages/overlays/kanboard/default.nix new file mode 100644 index 0000000..2a0d41b --- /dev/null +++ b/flakes/mypackages/overlays/kanboard/default.nix @@ -0,0 +1,19 @@ +self: super: { + kanboard = self.stdenv.mkDerivation rec { + name = "kanboard-${version}"; + version = "1.2.21"; + src = self.fetchFromGitHub { + owner = "kanboard"; + repo = "kanboard"; + rev = "ee18479b7e019e6415d7b095da629932ee1b3fd5"; + sha256 = "00pnpq5qgxpb2f9la58ycvx5kx3pmcvpssh6lwgpcdk04yciw8nh"; + }; + + dontBuild = true; + + installPhase = '' + cp -a . $out + mv $out/data $out/dataold + ''; + }; +} -- cgit v1.2.3