fix build

This commit is contained in:
陈浩南 2024-09-25 23:17:38 +08:00
parent 965e8cc8dc
commit a312f6c06b
5 changed files with 11 additions and 19 deletions

View File

@ -1291,11 +1291,11 @@
"treefmt-nix": "treefmt-nix_5"
},
"locked": {
"lastModified": 1725358301,
"narHash": "sha256-clY4INR7RjOVKya3FGNYvOhyFyUhd3dGQsnV2Za3rz0=",
"lastModified": 1727277425,
"narHash": "sha256-AkYXR8hhAcijhJFYu71+xkdkfTUKOM9ROjYwx5zIsdY=",
"owner": "CHN-beta",
"repo": "poetry2nix",
"rev": "1f803d2b2faa5b785dfd2fafe99b2411731bf08c",
"rev": "4d1c8dea2d0e3a81208d8598a1a776e65f71d73f",
"type": "github"
},
"original": {

View File

@ -7,4 +7,5 @@
sha256 = "0faahbzsr44bjmwr6508wi5hg59dfb57fzh5x6jh7zwmv4pzhqlb";
fetchLFS = true;
};
git-lfs-transfer = "sha256-AXXYo00ewbg656KiDasHrf3Krh6ZPUabmB3De090zCw=";
}

View File

@ -33,18 +33,7 @@ inputs:
enable = true;
# TCP 139 445 UDP 137 138
openFirewall = !samba.private;
securityType = "user";
settings =
{
workgroup = "WORKGROUP";
"server string" = "Samba Server";
"server role" = "standalone server";
"hosts allow" = "${samba.hostsAllowed}";
"dns proxy" = "no";
};
# obey pam restrictions = yes
# encrypt passwords = no
shares = listToAttrs (map
settings = listToAttrs (map
(share:
{
name = share.name;
@ -60,7 +49,8 @@ inputs:
"force directory mode" = "2755";
};
})
(attrsToList samba.shares));
(attrsToList samba.shares))
// { global."hosts allow" = "${samba.hostsAllowed}"; };
};
};
nixos.services.xray.client.v2ray-forwarder =

View File

@ -99,7 +99,8 @@ inputs: rec
chn-bsub = inputs.pkgs.callPackage ./chn-bsub { inherit biu; };
winjob = inputs.pkgs.callPackage ./winjob { stdenv = inputs.pkgs.gcc14Stdenv; };
sockpp = inputs.pkgs.callPackage ./sockpp.nix { src = inputs.topInputs.sockpp; };
git-lfs-transfer = inputs.pkgs.callPackage ./git-lfs-transfer.nix { src = inputs.topInputs.git-lfs-transfer; };
git-lfs-transfer = inputs.pkgs.callPackage ./git-lfs-transfer.nix
{ src = inputs.topInputs.git-lfs-transfer; hash = inputs.topInputs.self.src.git-lfs-transfer; };
py4vasp = inputs.pkgs.callPackage ./py4vasp.nix { src = inputs.topInputs.py4vasp; };
pocketfft = inputs.pkgs.callPackage ./pocketfft.nix { src = inputs.topInputs.pocketfft; };

View File

@ -1,6 +1,6 @@
{ buildGoModule, src }: buildGoModule
{ buildGoModule, src, hash }: buildGoModule
{
name = "git-lfs-transfer";
inherit src;
vendorHash = "sha256-DYupPz6VnFeFWG4helRv5ahbTDQk+6w6alxwNGU9B9Q=";
vendorHash = hash;
}