21a29c2720
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/lr/versions. These checks were done: - built on NixOS - ran ‘/nix/store/cwrqw239bf9kd1d82ljq7506j4ri4p8i-lr-1.4/bin/lr -h’ got 0 exit code - directory tree listing: https://gist.github.com/7ffd474460d7e46863b9b0cf42f9c791
24 lines
536 B
Nix
24 lines
536 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "lr-${version}";
|
|
version = "1.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "chneukirchen";
|
|
repo = "lr";
|
|
rev = "v${version}";
|
|
sha256 = "0lwnd5whq5f0czhqgaj4y6myzw4wssk6bji4z3dck95c8rpvg05a";
|
|
};
|
|
|
|
makeFlags = "PREFIX=$(out)";
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://github.com/chneukirchen/lr;
|
|
description = "List files recursively";
|
|
license = licenses.mit;
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.globin ];
|
|
};
|
|
}
|