summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-12-18 09:31:27 +0000
committerGitHub <noreply@github.com>2022-12-18 09:31:27 +0000
commit80ff73f1c7d6a0362be351413127851dff708826 (patch)
tree95ffe5f8fe90eb343d7c476352c1c77eb684f35a
parentf31d854772156134512bfb43831caaeadf91e2b6 (diff)
parent75dc90b65ea0b014201b1cd329415f46fe768957 (diff)
Merge #18
18: Repository maintenance r=matthiasbeyer a=matthiasbeyer Co-authored-by: Matthias Beyer <mail@beyermatthias.de>
-rw-r--r--Cargo.toml3
-rw-r--r--README.md2
-rw-r--r--default.nix19
3 files changed, 2 insertions, 22 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 503030b..ccad0e1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -9,12 +9,11 @@ authors = ["Matthias Beyer <mail@beyermatthias.de>",
description = "Crate to work with taskwarrior exported JSON"
keywords = ["json", "taskwarrior", "todo", "import", "export"]
-repository = "https://git.beyermatthi.as/task-hookrs"
+repository = "https://github.com/matthiasbeyer/task-hookrs"
readme = "./README.md"
license = "MPL-2.0"
[badges]
-travis-ci = { repository = "matthiasbeyer/task-hookrs", branch = "master" }
maintenance = { status = "passively-maintained" }
[dependencies]
diff --git a/README.md b/README.md
index 34689d8..74e7731 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ import/export foo by simply using this crate.
# License
task-hookrs - A Rust library for writing taskwarrior hooks and general interfacing with taskwarrior
- Copyright (C) 2016-2018 Matthias Beyer
+ Copyright (C) 2016-2023 Matthias Beyer
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
diff --git a/default.nix b/default.nix
deleted file mode 100644
index 475b991..0000000
--- a/default.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{ pkgs ? (import <nixpkgs> {}) }:
-
-let
- env = with pkgs.rustChannels.stable; [
- rustc
- cargo
- pkgs.llvmPackages.lldb
- ];
-in
-
-pkgs.stdenv.mkDerivation rec {
- name = "task-hookrs";
- src = ./.;
- version = "0.0.0";
-
- buildInputs = [ env ];
-
-}
-