tangled
alpha
login
or
join now
wiro.world
/
dotfiles
2
fork
atom
yep, more dotfiles
2
fork
atom
overview
issues
1
pulls
1
pipelines
templates: remove usage of deprecated authors key
wiro.world
1 month ago
184724e4
bbb95b06
verified
This commit was signed with the committer's
known signature
.
wiro.world
SSH Key Fingerprint:
SHA256:SmMcWpNAnL+VAgItSawvXgdPVn7f1rsyAuB/5VNclKY=
0/1
nix.yml
running
4w ago
+5
-8
1 changed file
expand all
collapse all
unified
split
templates
rust-pkg
package.nix
+5
-8
templates/rust-pkg/package.nix
reviewed
···
9
9
inherit (gitignore.lib) gitignoreSource;
10
10
11
11
src = gitignoreSource ./.;
12
12
-
cargoTOML = lib.importTOML "${src}/Cargo.toml";
12
12
+
cargo-toml = lib.importTOML "${src}/Cargo.toml";
13
13
in
14
14
rustPlatform.buildRustPackage {
15
15
-
pname = cargoTOML.package.name;
16
16
-
version = cargoTOML.package.version;
15
15
+
pname = cargo-toml.package.name;
16
16
+
version = cargo-toml.package.version;
17
17
18
18
inherit src;
19
19
20
20
-
cargoLock = {
21
21
-
lockFile = "${src}/Cargo.lock";
22
22
-
};
20
20
+
cargoLock.lockFile = "${src}/Cargo.lock";
23
21
24
22
nativeBuildInputs = [ ];
25
23
buildInputs = [ ];
26
24
27
25
meta = {
28
28
-
inherit (cargoTOML.package) description homepage license;
29
29
-
maintainers = cargoTOML.package.authors;
26
26
+
inherit (cargo-toml.package) description homepage license;
30
27
mainProgram = "app";
31
28
};
32
29
}