File tree Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Expand file tree Collapse file tree 3 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " remote-text-server"
3
- version = " 0.1.0 "
3
+ version = " 0.1.2 "
4
4
edition = " 2021"
5
5
build = " build.rs"
6
6
Original file line number Diff line number Diff line change 11
11
, makeWrapper
12
12
} :
13
13
14
+ let
15
+ package = ( builtins . fromTOML ( builtins . readFile ./Cargo.toml ) ) . package ;
16
+ in
14
17
rustPlatform . buildRustPackage rec {
15
- pname = "remote-text-server" ;
16
- version = ( builtins . fromTOML ( builtins . readFile ./Cargo.toml ) ) . package . version ;
18
+ pname = package . name ;
19
+ version = package . version ;
17
20
18
21
src = ./. ;
19
22
20
- cargoHash = "sha256-g6QiGH9eqC/mrGzeZOJ5wqm5V5D2xsDm4OOyzmE4sqM =" ;
23
+ cargoHash = "sha256-dGnOVvQ2nk3SHSBYjThkY5kRIBoQKKpCYvuRlPIpDyA =" ;
21
24
22
25
nativeBuildInputs = [
23
26
pkg-config
@@ -49,7 +52,7 @@ rustPlatform.buildRustPackage rec {
49
52
meta = with lib ; {
50
53
description = "The server-side software for Remote Text" ;
51
54
homepage = "https://github.com/Remote-Text/remote-text-server" ;
52
- license = with licenses ; [ ] ;
53
- maintainers = with maintainers ; [ ] ;
55
+ # license = with licenses; [ ];
56
+ # maintainers = with maintainers; [ ];
54
57
} ;
55
58
}
You can’t perform that action at this time.
0 commit comments