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