nixpkgs/pkgs/development/tools/misc/findnewest/default.nix
Benjamin Hipple c484d9b501 findnewest: init at 0.3
* findnewest: init at 0.3

* Update pkgs/development/tools/misc/findnewest/default.nix

Co-Authored-By: bhipple <bhipple@protonmail.com>

* Update pkgs/development/tools/misc/findnewest/default.nix

Co-Authored-By: bhipple <bhipple@protonmail.com>

* Update pkgs/development/tools/misc/findnewest/default.nix

Co-Authored-By: bhipple <bhipple@protonmail.com>

* Update pkgs/development/tools/misc/findnewest/default.nix

Co-Authored-By: bhipple <bhipple@protonmail.com>
2019-03-12 15:28:20 -07:00

23 lines
590 B
Nix

{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
pname = "findnewest";
version = "0.3";
src = fetchFromGitHub {
owner = "0-wiz-0";
repo = pname;
rev = "${pname}-${version}";
sha256 = "1x1cbn2b27h5r0ah5xc06fkalfdci2ngrgd4wibxjw0h88h0nvgq";
};
nativeBuildInputs = [ autoreconfHook ];
meta = with stdenv.lib; {
homepage = https://github.com/0-wiz-0/findnewest;
description = "Recursively find newest file in a hierarchy and print its timestamp";
license = licenses.bsd2;
maintainers = with maintainers; [ bhipple ];
};
}