lr: init at 0.2
This commit is contained in:
parent
dd7e6bd97f
commit
371b57a716
26
pkgs/tools/system/lr/default.nix
Normal file
26
pkgs/tools/system/lr/default.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{ stdenv, fetchFromGitHub }:
|
||||||
|
|
||||||
|
let
|
||||||
|
version = "0.2";
|
||||||
|
in
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "lr-${version}";
|
||||||
|
inherit version;
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "chneukirchen";
|
||||||
|
repo = "lr";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1wn1j0cf84r4nli92myf3waackh2p6r2hkavgx6533x15kdyfnf7";
|
||||||
|
};
|
||||||
|
|
||||||
|
makeFlags = "PREFIX=$(out)";
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
homepage = "http://github.com/chneukirchen/lr";
|
||||||
|
description = "List files recursively";
|
||||||
|
license = stdenv.lib.licenses.mit;
|
||||||
|
platforms = stdenv.lib.platforms.all;
|
||||||
|
maintainers = [stdenv.lib.maintainers.globin];
|
||||||
|
};
|
||||||
|
}
|
@ -2236,6 +2236,8 @@ let
|
|||||||
|
|
||||||
lout = callPackage ../tools/typesetting/lout { };
|
lout = callPackage ../tools/typesetting/lout { };
|
||||||
|
|
||||||
|
lr = callPackage ../tools/system/lr { };
|
||||||
|
|
||||||
lrzip = callPackage ../tools/compression/lrzip { };
|
lrzip = callPackage ../tools/compression/lrzip { };
|
||||||
|
|
||||||
# lsh installs `bin/nettle-lfib-stream' and so does Nettle. Give the
|
# lsh installs `bin/nettle-lfib-stream' and so does Nettle. Give the
|
||||||
|
Loading…
Reference in New Issue
Block a user