biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / by-name / du / dummyhttp / package.nix
blob59ca3d3344a01c2815c85294299c0ec05c6e524e
1 { lib
2 , fetchFromGitHub
3 , rustPlatform
4 , darwin
5 , stdenv
6 }:
8 rustPlatform.buildRustPackage rec {
9   pname = "dummyhttp";
10   version = "1.1.0";
12   src = fetchFromGitHub {
13     owner = "svenstaro";
14     repo = "dummyhttp";
15     rev = "v${version}";
16     hash = "sha256-LgOIL4kg3cH0Eo+Z+RGwxZTPzCNSGAdKT7N8tZWHSQQ=";
17   };
19   cargoHash = "sha256-bw0VlPHjNZkpLVJZrB3aaQGkwvQpkJGIn+hi0yn2M4s=";
21   buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [
22     darwin.apple_sdk.frameworks.Security
23   ];
25   meta = with lib; {
26     description = "Super simple HTTP server that replies a fixed body with a fixed response code";
27     homepage = "https://github.com/svenstaro/dummyhttp";
28     license = with licenses; [ mit ];
29     maintainers = with maintainers; [ GuillaumeDesforges ];
30     mainProgram = "dummyhttp";
31   };