Compare commits
No commits in common. "4d69142a900529d9526bd04747b27eef16bb470e" and "337e7a807b7db6a5b91ec2c31e131640cf0b7ea7" have entirely different histories.
4d69142a90
...
337e7a807b
3 changed files with 14 additions and 12 deletions
12
flake.lock
generated
12
flake.lock
generated
|
@ -7,11 +7,11 @@
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1692260837,
|
"lastModified": 1691882297,
|
||||||
"narHash": "sha256-2FpkX1zl+7ni7djK7NeE1ZGupRUwZgjW+RPCSBgDf4k=",
|
"narHash": "sha256-e1/LAQSGLnBywfA1TfMl0Vj3tvYka73XOZ/D2/CJowE=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "6a94c1a59737783c282c4031555a289c28b961e4",
|
"rev": "c3ab5ea047e6dc73df530948f7367455749d8906",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
@ -22,11 +22,11 @@
|
||||||
},
|
},
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1692174805,
|
"lastModified": 1691654369,
|
||||||
"narHash": "sha256-xmNPFDi/AUMIxwgOH/IVom55Dks34u1g7sFKKebxUm0=",
|
"narHash": "sha256-gSILTEx1jRaJjwZxRlnu3ZwMn1FVNk80qlwiCX8kmpo=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "caac0eb6bdcad0b32cb2522e03e4002c8975c62e",
|
"rev": "ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|
|
@ -24,10 +24,7 @@
|
||||||
monaco-powerline
|
monaco-powerline
|
||||||
mtools
|
mtools
|
||||||
mtr
|
mtr
|
||||||
# TODO: Zig currently has issues under Darwin, so
|
ncdu
|
||||||
# we'll temporarily prefer ncdu 1.x.
|
|
||||||
# See also: https://github.com/NixOS/nixpkgs/pull/249722
|
|
||||||
ncdu_1
|
|
||||||
neofetch
|
neofetch
|
||||||
nixopsUnstable
|
nixopsUnstable
|
||||||
p7zip
|
p7zip
|
||||||
|
|
|
@ -1,14 +1,19 @@
|
||||||
{ stdenv, lib, fetchFromGitHub, swift, swiftpm, swiftPackages }:
|
{ stdenv, lib, fetchFromGitHub, swift, swiftpm, swiftPackages }:
|
||||||
|
|
||||||
|
# This derivation is impure: it relies on an Xcode toolchain being installed
|
||||||
|
# and available in the expected place. The values of sandboxProfile and
|
||||||
|
# hydraPlatforms are copied pretty directly from the MacVim derivation, which
|
||||||
|
# is also impure.
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "swiftformat";
|
pname = "swiftformat";
|
||||||
version = "0.52.1";
|
version = "0.52.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "nicklockwood";
|
owner = "nicklockwood";
|
||||||
repo = "SwiftFormat";
|
repo = "SwiftFormat";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "sha256-0JSspbYIYXfE3oDMi2EfR7pZzQsEtbvB8LJplOtq2sk=";
|
sha256 = "sha256-Y8ZbmFdrNCzfGLeA+nPc0DHXBHaUw6JFpONbm+LnTjk=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ swift swiftpm ];
|
nativeBuildInputs = [ swift swiftpm ];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue