4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
35 lines
1.0 KiB
Nix
35 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, buildPythonApplication, dateutil }:
|
|
|
|
buildPythonApplication rec {
|
|
pname = "pdd";
|
|
version = "1.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jarun";
|
|
repo = "pdd";
|
|
rev = "v${version}";
|
|
sha256 = "1ivzcbm888aibiihw03idp38qbl8mywj1lc1x0q787v0pzqfb4ss";
|
|
};
|
|
|
|
format = "other";
|
|
|
|
propagatedBuildInputs = [ dateutil ];
|
|
|
|
installFlags = [ "PREFIX=$(out)" ];
|
|
|
|
meta = with 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;
|
|
};
|
|
}
|