2018-12-01 18:51:49 +00:00
|
|
|
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
|
2018-12-03 23:20:02 +00:00
|
|
|
rustPlatform.buildRustPackage {
|
2018-12-04 23:19:33 +00:00
|
|
|
name = "loop-unstable-2018-12-04";
|
2018-12-01 18:51:49 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "Miserlou";
|
|
|
|
repo = "Loop";
|
2018-12-04 23:19:33 +00:00
|
|
|
rev = "598ccc8e52bb13b8aff78b61cfe5b10ff576cecf";
|
|
|
|
sha256 = "0f33sc1slg97q1aisdrb465c3p7fgdh2swv8k3yphpnja37f5nl4";
|
2018-12-01 18:51:49 +00:00
|
|
|
};
|
|
|
|
|
2020-02-28 06:08:36 +00:00
|
|
|
cargoSha256 = "1ydd0sd4lvl6fdl4b13ncqcs03sbxb6v9dwfyqi64zihqzpblshv";
|
2018-12-01 18:51:49 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "UNIX's missing `loop` command";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/Miserlou/Loop";
|
2018-12-01 18:51:49 +00:00
|
|
|
maintainers = with maintainers; [ koral ];
|
|
|
|
license = licenses.mit;
|
|
|
|
};
|
|
|
|
}
|