Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at release-19.03 21 lines 598 B view raw
1{ stdenv, fetchFromGitHub, rustPlatform }: 2 3rustPlatform.buildRustPackage { 4 name = "loop-unstable-2018-12-04"; 5 6 src = fetchFromGitHub { 7 owner = "Miserlou"; 8 repo = "Loop"; 9 rev = "598ccc8e52bb13b8aff78b61cfe5b10ff576cecf"; 10 sha256 = "0f33sc1slg97q1aisdrb465c3p7fgdh2swv8k3yphpnja37f5nl4"; 11 }; 12 13 cargoSha256 = "1ccf8dkswwdbwf9diy0l4vc4i2g05ynhi3w1jg3b2ldrvj0j9m9s"; 14 15 meta = with stdenv.lib; { 16 description = "UNIX's missing `loop` command"; 17 homepage = https://github.com/Miserlou/Loop; 18 maintainers = with maintainers; [ koral ]; 19 license = licenses.mit; 20 }; 21}