Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 27 lines 650 B view raw
1{ 2 lib, 3 fetchFromGitHub, 4 rustPlatform, 5}: 6 7rustPlatform.buildRustPackage { 8 pname = "remkrom"; 9 version = "0-unstable-2020-10-17"; 10 11 src = fetchFromGitHub { 12 owner = "siraben"; 13 repo = "remkrom"; 14 rev = "86a0b19c1d382a029ecaa96eeca7e9f76c8561d6"; 15 sha256 = "sha256-DhfNfV9bd0p5dLXKgrVLyugQHK+RHsepeg0tGq5J6cI="; 16 }; 17 18 cargoHash = "sha256-H+SZ+aUQReFJiN2MQHxaI0/bM1sXaSFVlIhedCKBQ0M="; 19 20 meta = with lib; { 21 description = "Reimplementation of mkrom in Rust"; 22 homepage = "https://github.com/siraben/remkrom"; 23 license = licenses.mit; 24 maintainers = with maintainers; [ siraben ]; 25 mainProgram = "remkrom"; 26 }; 27}