biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / loop / default.nix
blobc8fbb1845b83f4145cab979481776eb64fb481cd
1 { lib, fetchFromGitHub, rustPlatform }:
3 rustPlatform.buildRustPackage {
4   pname = "loop";
5   version = "unstable-2020-07-08";
7   src = fetchFromGitHub {
8     owner = "Miserlou";
9     repo  = "Loop";
10     rev   = "944df766ddecd7a0d67d91cc2dfda8c197179fb0";
11     sha256 = "0v61kahwk1kdy8pb40rjnzcxby42nh02nyg9jqqpx3vgdrpxlnix";
12   };
14   cargoHash = "sha256-sceS/2qxiV16VP8E3M39MYnGiCbq0rrnehsV/SuHZl4=";
16   meta = with lib; {
17     description = "UNIX's missing `loop` command";
18     homepage = "https://github.com/Miserlou/Loop";
19     maintainers = with maintainers; [ koral ];
20     license = licenses.mit;
21     mainProgram = "loop";
22   };