Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

rustypaste: 0.10.0 -> 0.10.1

Diff: https://github.com/orhun/rustypaste/compare/v0.10.0...v0.10.1

Changelog: https://github.com/orhun/rustypaste/blob/v0.10.1/CHANGELOG.md

figsoda 7af82333 31bd7e57

+4 -4
+4 -4
pkgs/servers/rustypaste/default.nix
··· 2 2 3 3 rustPlatform.buildRustPackage rec { 4 4 pname = "rustypaste"; 5 - version = "0.10.0"; 5 + version = "0.10.1"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "orhun"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-qzSrxkq63SFcP/sQeORqG9+c+ct/n29jdIFUL9jut0w="; 11 + sha256 = "sha256-WLuMG9gC2kSdyrYa0CNnInjetXph0OL/Jmjskih4tuw="; 12 12 }; 13 13 14 - cargoHash = "sha256-EDnc3P4sIpUyCDSozvaVeWI3y2KWDXKVcnkZ7M3Xx4w="; 14 + cargoHash = "sha256-A651PTooQjITjxCLKPhnFSCxa27uesTOP8ZbAlRbOUk="; 15 15 16 16 buildInputs = lib.optionals stdenv.isDarwin [ 17 17 darwin.apple_sdk.frameworks.CoreServices ··· 30 30 homepage = "https://github.com/orhun/rustypaste"; 31 31 changelog = "https://github.com/orhun/rustypaste/blob/v${version}/CHANGELOG.md"; 32 32 license = licenses.mit; 33 - maintainers = with maintainers; [ seqizz ]; 33 + maintainers = with maintainers; [ figsoda seqizz ]; 34 34 }; 35 35 }