nixpkgs/pkgs/tools/system/lr/default.nix
Vika Shleina df9ec31175
maintainer-list.nix: replace vikanezrimaya's github username
I updated my github username for consistency over all of the online
services I use.
2022-03-01 07:54:57 +03:00

24 lines
545 B
Nix

{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
pname = "lr";
version = "1.5.1";
src = fetchFromGitHub {
owner = "chneukirchen";
repo = "lr";
rev = "v${version}";
sha256 = "1wv2acm4r5y5gg6f64v2hiwpg1f3lnr4fy1a9zssw77fmdc7ys3j";
};
makeFlags = [ "PREFIX=$(out)" ];
meta = with lib; {
homepage = "https://github.com/chneukirchen/lr";
description = "List files recursively";
license = licenses.mit;
platforms = platforms.all;
maintainers = with maintainers; [ vikanezrimaya ];
};
}