syndicate-server: 0.24.0 -> 0.30.0

This commit is contained in:
Emery Hemingway 2023-05-15 22:35:09 +01:00
parent f9dd589c03
commit 6b870be460
3 changed files with 16 additions and 11 deletions

View File

@ -17,16 +17,18 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1656338871,
"narHash": "sha256-+LOvZFt3MpWtrxXLH4igQtRVzyD43VnuTJjDVbt7phY=",
"lastModified": 1684141842,
"narHash": "sha256-sbdzOwBDcyzz/Dr1ztdF+tElMyM/cgx+4XxVgz+NLRM=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "819e4d63fc7f337a822a049fd055cd7615a5e0d6",
"rev": "2eb0795720849ae19c068e39b17362d3ebcd585c",
"type": "github"
},
"original": {
"id": "nixpkgs",
"type": "indirect"
"owner": "NixOS",
"ref": "release-22.11",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {

View File

@ -1,9 +1,12 @@
{
description = "Syndicate utilities";
inputs.rust = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/release-22.11";
rust = {
url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = { self, nixpkgs, rust }: {

View File

@ -4,13 +4,13 @@
rustPlatform.buildRustPackage rec {
pname = "syndicate-server";
version = "0.24.0";
version = "0.30.0";
src = fetchgit {
url = "https://git.syndicate-lang.org/syndicate-lang/syndicate-rs.git";
rev = "${pname}-v${version}";
sha256 = "sha256-91dGi7CyI/6XkbpWbFtnb6XACIExHX/6XYVkKlkDTzc=";
sha256 = "sha256-1WVquqlLaTbrxrzm9HqDp+OuZb2GTlaBME4iL+devGA=";
};
cargoHash = "sha256-MXchqX8wvMwnT2Js0YVIgOKsZuGglnKRg3HsuyOgBsI=";
cargoHash = "sha256-hTxHoVMM6jhPFV4u2Lf7je3drG/AIrrUNo796OYGZ7I=";
nativeBuildInputs = [ rust pkg-config ];
buildInputs = [ openssl ];