3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/system/lr/default.nix

24 lines
519 B
Nix
Raw Normal View History

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