2016-02-08 16:28:20 +00:00
|
|
|
{ stdenv, fetchFromGitHub }:
|
|
|
|
|
2017-08-12 15:59:44 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "lr";
|
2020-01-03 12:52:03 +00:00
|
|
|
version = "1.5";
|
2016-02-08 16:28:20 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "chneukirchen";
|
|
|
|
repo = "lr";
|
|
|
|
rev = "v${version}";
|
2020-01-03 12:52:03 +00:00
|
|
|
sha256 = "1dxla14ldyym01lhmacfwps1vim0fk67c2ik2w08gg534siyj770";
|
2016-02-08 16:28:20 +00:00
|
|
|
};
|
|
|
|
|
2019-10-27 13:03:25 +00:00
|
|
|
makeFlags = [ "PREFIX=$(out)" ];
|
2016-02-08 16:28:20 +00:00
|
|
|
|
2017-11-10 23:09:58 +00:00
|
|
|
meta = with stdenv.lib; {
|
2017-11-10 21:13:27 +00:00
|
|
|
homepage = https://github.com/chneukirchen/lr;
|
2016-02-08 16:28:20 +00:00
|
|
|
description = "List files recursively";
|
2017-11-10 23:09:58 +00:00
|
|
|
license = licenses.mit;
|
|
|
|
platforms = platforms.all;
|
2019-08-28 18:17:34 +01:00
|
|
|
maintainers = with maintainers; [ vika_nezrimaya ];
|
2016-02-08 16:28:20 +00:00
|
|
|
};
|
|
|
|
}
|