summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authordavidak <davidak@users.noreply.github.com>2021-09-05 13:06:13 +0200
committerGitHub <noreply@github.com>2021-09-05 13:06:13 +0200
commit5c28c234b39514ec86ce951e71463120c1793738 (patch)
treeb4d2a03fb2a4cb25a603419c43b7e17e4465ae3b /pkgs/applications/office
parent52411bf932ef48a9ae8d42ca95220ffed7346e24 (diff)
parente507ca593330a24f0de49cdeb60d4074e5bb3ab9 (diff)
downloadnixpkgs-5c28c234b39514ec86ce951e71463120c1793738.tar
nixpkgs-5c28c234b39514ec86ce951e71463120c1793738.tar.gz
nixpkgs-5c28c234b39514ec86ce951e71463120c1793738.tar.bz2
nixpkgs-5c28c234b39514ec86ce951e71463120c1793738.tar.lz
nixpkgs-5c28c234b39514ec86ce951e71463120c1793738.tar.xz
nixpkgs-5c28c234b39514ec86ce951e71463120c1793738.tar.zst
nixpkgs-5c28c234b39514ec86ce951e71463120c1793738.zip
Merge pull request #136768 from bobby285271/timetable
timetable: drop package
Diffstat (limited to 'pkgs/applications/office')
-rw-r--r--pkgs/applications/office/timetable/default.nix63
1 files changed, 0 insertions, 63 deletions
diff --git a/pkgs/applications/office/timetable/default.nix b/pkgs/applications/office/timetable/default.nix
deleted file mode 100644
index 9c9df892a04..00000000000
--- a/pkgs/applications/office/timetable/default.nix
+++ /dev/null
@@ -1,63 +0,0 @@
-{ lib, stdenv
-, fetchFromGitHub
-, nix-update-script
-, glib
-, gtk3
-, vala
-, json-glib
-, libgee
-, meson
-, ninja
-, pkg-config
-, pantheon
-, python3
-, wrapGAppsHook
-}:
-
-
-stdenv.mkDerivation rec {
-  pname = "timetable";
-  version = "1.1.0";
-
-  src = fetchFromGitHub {
-    owner = "lainsce";
-    repo = pname;
-    rev = version;
-    sha256 = "12c8kdrbz6x2mlrvr0nq9y5khj0qiiwlxf7aqc2z3dnrawjgy1rb";
-  };
-
-  nativeBuildInputs = [
-    meson
-    ninja
-    pkg-config
-    vala
-    python3
-    wrapGAppsHook
-  ];
-
-  buildInputs = [
-    glib
-    gtk3
-    json-glib
-    libgee
-    pantheon.granite
-  ];
-
-  postPatch = ''
-    chmod +x meson/post_install.py
-    patchShebangs meson/post_install.py
-  '';
-
-  passthru = {
-    updateScript = nix-update-script {
-      attrPath = pname;
-    };
-  };
-
-  meta = with lib; {
-    description = "Plot out your own timetable for the week and organize it";
-    homepage = "https://github.com/lainsce/timetable";
-    maintainers = [ maintainers.xiorcale ] ++ pantheon.maintainers;
-    license = licenses.gpl2Plus;
-  };
-}