evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / fi / findnewest / package.nix
blobadf791cf6030211450637b6aee2eebf80c270fa7
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "findnewest";
5   version = "0.3";
7   src = fetchFromGitHub {
8     owner = "0-wiz-0";
9     repo = pname;
10     rev = "${pname}-${version}";
11     sha256 = "1x1cbn2b27h5r0ah5xc06fkalfdci2ngrgd4wibxjw0h88h0nvgq";
12   };
14   nativeBuildInputs = [ autoreconfHook ];
16   meta = with lib; {
17     homepage = "https://github.com/0-wiz-0/findnewest";
18     description = "Recursively find newest file in a hierarchy and print its timestamp";
19     mainProgram = "fn";
20     license = licenses.bsd2;
21     maintainers = with maintainers; [ bhipple ];
22   };