nixpkgs/pkgs/tools/system/lr/default.nix

24 lines
536 B
Nix
Raw Normal View History

2016-02-08 17:28:20 +01:00
{ stdenv, fetchFromGitHub }:
2017-08-12 16:59:44 +02:00
stdenv.mkDerivation rec {
2016-02-08 17:28:20 +01:00
name = "lr-${version}";
version = "1.4";
2016-02-08 17:28:20 +01:00
src = fetchFromGitHub {
owner = "chneukirchen";
repo = "lr";
rev = "v${version}";
sha256 = "0lwnd5whq5f0czhqgaj4y6myzw4wssk6bji4z3dck95c8rpvg05a";
2016-02-08 17:28:20 +01:00
};
makeFlags = "PREFIX=$(out)";
2017-11-11 00:09:58 +01:00
meta = with stdenv.lib; {
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;
maintainers = [ maintainers.globin ];
2016-02-08 17:28:20 +01:00
};
}