summary refs log tree commit diff
path: root/pkgs/applications/office
diff options
context:
space:
mode:
authorBobby Rong <rjl931189261@126.com>2021-09-05 16:34:53 +0800
committerBobby Rong <rjl931189261@126.com>2021-09-05 16:34:53 +0800
commite507ca593330a24f0de49cdeb60d4074e5bb3ab9 (patch)
treea12d34b5df59592e91a4657b49fe2558ccda5035 /pkgs/applications/office
parent0f1a3661f12b23e066b73909a07e36b60e824893 (diff)
downloadnixpkgs-e507ca593330a24f0de49cdeb60d4074e5bb3ab9.tar
nixpkgs-e507ca593330a24f0de49cdeb60d4074e5bb3ab9.tar.gz
nixpkgs-e507ca593330a24f0de49cdeb60d4074e5bb3ab9.tar.bz2
nixpkgs-e507ca593330a24f0de49cdeb60d4074e5bb3ab9.tar.lz
nixpkgs-e507ca593330a24f0de49cdeb60d4074e5bb3ab9.tar.xz
nixpkgs-e507ca593330a24f0de49cdeb60d4074e5bb3ab9.tar.zst
nixpkgs-e507ca593330a24f0de49cdeb60d4074e5bb3ab9.zip
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;
-  };
-}