summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2018-04-05 19:25:05 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2018-04-05 19:25:05 +0200
commita9f37d1c250ebef05fa81909b2583642d23811b7 (patch)
tree451ccefd892e66700ec831b31505cc4b9a80bff4 /pkgs/tools/misc
parenta137be55907a0e083a192ee56b7f6f0a6369ab02 (diff)
parentc45eadf31ddf61328a33dc9215c4b1f1f4f2c0d2 (diff)
downloadnixlib-a9f37d1c250ebef05fa81909b2583642d23811b7.tar
nixlib-a9f37d1c250ebef05fa81909b2583642d23811b7.tar.gz
nixlib-a9f37d1c250ebef05fa81909b2583642d23811b7.tar.bz2
nixlib-a9f37d1c250ebef05fa81909b2583642d23811b7.tar.lz
nixlib-a9f37d1c250ebef05fa81909b2583642d23811b7.tar.xz
nixlib-a9f37d1c250ebef05fa81909b2583642d23811b7.tar.zst
nixlib-a9f37d1c250ebef05fa81909b2583642d23811b7.zip
Merge master into staging
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/pdd/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/tools/misc/pdd/default.nix b/pkgs/tools/misc/pdd/default.nix
new file mode 100644
index 000000000000..d362bccb993e
--- /dev/null
+++ b/pkgs/tools/misc/pdd/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchFromGitHub, buildPythonApplication, dateutil }:
+
+buildPythonApplication rec {
+  pname = "pdd";
+  version = "1.1";
+
+  src = fetchFromGitHub {
+    owner = "jarun";
+    repo = "pdd";
+    rev = "v${version}";
+    sha256 = "1nb64vdlym4najjyfxq1nprqcwgrwnqj1mml0fcg20hrgbjm4bf2";
+  };
+
+  format = "other";
+
+  propagatedBuildInputs = [ dateutil ];
+
+  installFlags = [ "PREFIX=$(out)" ];
+
+  meta = with stdenv.lib; {
+    homepage = "https://github.com/jarun/pdd";
+    description = "Tiny date, time diff calculator";
+    longDescription = ''
+      There are times you want to check how old you are (in years, months, days)
+      or how long you need to wait for the next flash sale or the number of days
+      left of your notice period in your current job. pdd (Python3 Date Diff) is
+      a small cmdline utility to calculate date and time difference. If no
+      program arguments are specified it shows the current date, time and
+      timezone.
+    '';
+    maintainers = [ maintainers.infinisil ];
+    license = licenses.gpl3;
+  };
+}