syndicate-rs: 2021-09-01 -> 0.14.0

This commit is contained in:
Emery Hemingway 2023-05-15 21:03:57 +01:00
parent 698b386931
commit ebac12fa2c
3 changed files with 9 additions and 9 deletions

View File

@ -17,17 +17,17 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1636723036,
"narHash": "sha256-zFuu3TTj/NLq3NPJ8pprlmkOpjAoW3AWQNac3UFkCG8=",
"lastModified": 1679048363,
"narHash": "sha256-afY4G9yA0MD/wxfAd7kks2yaCUOMuDtiwecDYIVxYfY=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "50a1ef0f59752623af884f5085e3d5e8bd806c77",
"rev": "2766f77c32e171a04d59b636a91083bae862274e",
"type": "github"
},
"original": {
"owner": "nixos",
"ref": "release-21.11",
"repo": "nixpkgs",
"rev": "50a1ef0f59752623af884f5085e3d5e8bd806c77",
"type": "github"
}
},

View File

@ -3,7 +3,7 @@
inputs.rust.url = "github:oxalica/rust-overlay";
inputs.nixpkgs.url = "github:nixos/nixpkgs/50a1ef0f59752623af884f5085e3d5e8bd806c77";
inputs.nixpkgs.url = "github:nixos/nixpkgs/release-21.11";
outputs = { self, nixpkgs, rust }:
let

View File

@ -2,13 +2,13 @@
rustPlatform.buildRustPackage rec {
pname = "syndicate-rs";
version = "2021-09-01";
version = "0.14.0";
src = fetchgit {
url = "https://git.syndicate-lang.org/syndicate-lang/syndicate-rs.git";
rev = "622115e13c69397dfa0beb433fdaf382949252b3";
sha256 = "sha256-7XcCiDlUntLRB0MLYk+57RSe4f6NyqRa/Jc42xrPOnQ=";
rev = "syndicate-v${version}";
sha256 = "sha256-B7+eeb9USdeMBwWFpM7+JZ+tYF/Of5n49OOil/ZR3sM=";
};
cargoHash = "sha256-sagyE3yCmSNwqgZrgnw1ar7S37iZhVYYpn3WtIoBIU8=";
cargoHash = "sha256-HPbhp+tk+gL4INVA1SOyiqSYpQVhFq+B6N6M6vCKIHE=";
nativeBuildInputs = [ rust pkg-config ];
buildInputs = [ openssl ];