2018-12-01 18:51:49 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
2018-12-03 23:20:02 +00:00
|
|
|
rustPlatform.buildRustPackage {
|
2020-07-09 23:47:22 +01:00
|
|
|
pname = "loop";
|
|
|
|
version = "unstable-2020-07-08";
|
2018-12-01 18:51:49 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Miserlou";
|
|
|
|
repo = "Loop";
|
2020-07-09 23:47:22 +01:00
|
|
|
rev = "944df766ddecd7a0d67d91cc2dfda8c197179fb0";
|
|
|
|
sha256 = "0v61kahwk1kdy8pb40rjnzcxby42nh02nyg9jqqpx3vgdrpxlnix";
|
2018-12-01 18:51:49 +00:00
|
|
|
};
|
|
|
|
|
2020-07-09 23:47:22 +01:00
|
|
|
cargoSha256 = "0a3l580ca23vx8isd1qff870ci3p7wf4qrm53jl7nhfjh7rg5a4w";
|
2018-12-01 18:51:49 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "UNIX's missing `loop` command";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/Miserlou/Loop";
|
2018-12-01 18:51:49 +00:00
|
|
|
maintainers = with maintainers; [ koral ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|