lfs: init at 1.0.0 (#141178)

Co-authored-by: Samuel Gräfenstein <git@samuelgrf.com>
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
k0ral 2021-10-10 19:04:16 +02:00 committed by GitHub
parent 3814bbc65f
commit 43bbea9387
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View file

@ -0,0 +1,25 @@
{ lib
, fetchFromGitHub
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "lfs";
version = "1.1.0";
src = fetchFromGitHub {
owner = "Canop";
repo = pname;
rev = "v${version}";
sha256 = "gez5q1niIhzWJpsEkbVRuQFILo3tTO8aJq7ewZArJ5M=";
};
cargoSha256 = "2U1xDG4bTimtmjwZ1z9ErlaOcBNJdRcHlEWVaiGg01M=";
meta = with lib; {
description = "Get information on your mounted disks";
homepage = "https://github.com/Canop/lfs";
license = licenses.mit;
maintainers = with maintainers; [ koral ];
};
}

View file

@ -6692,6 +6692,8 @@ with pkgs;
ffmpeg = ffmpeg-full;
};
lfs = callPackage ../tools/filesystems/lfs { };
lksctp-tools = callPackage ../os-specific/linux/lksctp-tools { };
lldpd = callPackage ../tools/networking/lldpd { };