tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
treewide: remove file-wide `with rustPlatform;`s
figsoda
2 years ago
38401aed
10d74285
+9
-25
9 changed files
expand all
collapse all
unified
split
pkgs
applications
networking
cluster
click
default.nix
dyndns
cfdyndns
default.nix
development
misc
loc
default.nix
tools
chit
default.nix
clog-cli
default.nix
pax-rs
default.nix
servers
tarssh
default.nix
tools
misc
ffsend
default.nix
security
ripasso
cursive.nix
+1
-3
pkgs/applications/networking/cluster/click/default.nix
···
1
{ darwin, fetchFromGitHub, rustPlatform, lib, stdenv }:
2
3
-
with rustPlatform;
4
-
5
-
buildRustPackage rec {
6
pname = "click";
7
version = "0.4.2";
8
···
1
{ darwin, fetchFromGitHub, rustPlatform, lib, stdenv }:
2
3
+
rustPlatform.buildRustPackage rec {
0
0
4
pname = "click";
5
version = "0.4.2";
6
+1
-3
pkgs/applications/networking/dyndns/cfdyndns/default.nix
···
1
{ lib, fetchFromGitHub, rustPlatform, pkg-config, openssl }:
2
3
-
with rustPlatform;
4
-
5
-
buildRustPackage rec {
6
pname = "cfdyndns";
7
version = "0.0.3";
8
src = fetchFromGitHub {
···
1
{ lib, fetchFromGitHub, rustPlatform, pkg-config, openssl }:
2
3
+
rustPlatform.buildRustPackage rec {
0
0
4
pname = "cfdyndns";
5
version = "0.0.3";
6
src = fetchFromGitHub {
+1
-3
pkgs/development/misc/loc/default.nix
···
1
{ lib, fetchFromGitHub, rustPlatform }:
2
3
-
with rustPlatform;
4
-
5
-
buildRustPackage rec {
6
version = "0.4.1";
7
pname = "loc";
8
···
1
{ lib, fetchFromGitHub, rustPlatform }:
2
3
+
rustPlatform.buildRustPackage rec {
0
0
4
version = "0.4.1";
5
pname = "loc";
6
+1
-3
pkgs/development/tools/chit/default.nix
···
2
, darwin
3
}:
4
5
-
with rustPlatform;
6
-
7
-
buildRustPackage rec {
8
pname = "chit";
9
version = "0.1.15";
10
···
2
, darwin
3
}:
4
5
+
rustPlatform.buildRustPackage rec {
0
0
6
pname = "chit";
7
version = "0.1.15";
8
+1
-3
pkgs/development/tools/clog-cli/default.nix
···
1
{ fetchFromGitHub, rustPlatform, lib }:
2
3
-
with rustPlatform;
4
-
5
-
buildRustPackage rec {
6
pname = "clog-cli";
7
version = "0.9.3";
8
···
1
{ fetchFromGitHub, rustPlatform, lib }:
2
3
+
rustPlatform.buildRustPackage rec {
0
0
4
pname = "clog-cli";
5
version = "0.9.3";
6
+1
-2
pkgs/development/tools/pax-rs/default.nix
···
1
{ lib, fetchFromGitHub, fetchurl, rustPlatform, runCommand } :
2
-
with rustPlatform;
3
4
-
buildRustPackage rec {
5
pname = "pax-rs";
6
version = "0.4.0";
7
···
1
{ lib, fetchFromGitHub, fetchurl, rustPlatform, runCommand } :
0
2
3
+
rustPlatform.buildRustPackage rec {
4
pname = "pax-rs";
5
version = "0.4.0";
6
+1
-3
pkgs/servers/tarssh/default.nix
···
1
{ fetchFromGitHub, rustPlatform, lib }:
2
3
-
with rustPlatform;
4
-
5
-
buildRustPackage rec {
6
pname = "tarssh";
7
version = "0.7.0";
8
···
1
{ fetchFromGitHub, rustPlatform, lib }:
2
3
+
rustPlatform.buildRustPackage rec {
0
0
4
pname = "tarssh";
5
version = "0.7.0";
6
+1
-3
pkgs/tools/misc/ffsend/default.nix
···
13
14
assert (x11Support && usesX11) -> xclip != null || xsel != null;
15
16
-
with rustPlatform;
17
-
18
-
buildRustPackage rec {
19
pname = "ffsend";
20
version = "0.2.76";
21
···
13
14
assert (x11Support && usesX11) -> xclip != null || xsel != null;
15
16
+
rustPlatform.buildRustPackage rec {
0
0
17
pname = "ffsend";
18
version = "0.2.76";
19
+1
-2
pkgs/tools/security/ripasso/cursive.nix
···
17
, installShellFiles
18
}:
19
20
-
with rustPlatform;
21
-
buildRustPackage rec {
22
version = "0.6.4";
23
pname = "ripasso-cursive";
24
···
17
, installShellFiles
18
}:
19
20
+
rustPlatform.buildRustPackage rec {
0
21
version = "0.6.4";
22
pname = "ripasso-cursive";
23