chore(deps): update flake deps

This commit is contained in:
dusk 2021-04-09 14:08:34 +03:00
parent 17bf0a441a
commit 2e099ba6a9
Signed by: dusk
GPG Key ID: 1D8F8FAF2294D6EA
2 changed files with 22 additions and 18 deletions

View File

@ -2,11 +2,11 @@
"nodes": { "nodes": {
"cachix": { "cachix": {
"locked": { "locked": {
"lastModified": 1617042094, "lastModified": 1617786842,
"narHash": "sha256-c8w5/Dz+r8gHIGZs1BHJPSzpP3Sga/BYebRkqBoDANY=", "narHash": "sha256-nuhewc9ANLkY2dBc9ikBQmy5EdCPElHbxd/pU96HdG0=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "310885ec804f9fa0db5c705c7f5d35d415f50564", "rev": "d6f63659a7021051a46035373ed50fbea7e4e924",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -23,11 +23,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1617493660, "lastModified": 1617894699,
"narHash": "sha256-PnPSs6RkkI2M6GyB2iGsL6hgDTe01yk5ZGP9q/Q14M8=", "narHash": "sha256-zlG3xNXgqo5pbMmfq8YaqGoVjElHnTDnEz13A+pUbZY=",
"owner": "nix-community", "owner": "nix-community",
"repo": "home-manager", "repo": "home-manager",
"rev": "25a6a6d2984e70c9a07c8f8a69ebe24e6c700abf", "rev": "56f5f41ed42f7d476a7c79fa8ec71f5605487abf",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -74,11 +74,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1617082367, "lastModified": 1617899217,
"narHash": "sha256-W0cQPGjc4IVzryaGycuoS8KZkXafS1P23w/fcKLoD5Y=", "narHash": "sha256-gd5JHH7IkeoIQ/oiGZSqDpGdGt7DMRJTQ8JiD8+hdOQ=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "04a2b269d8921505a2969fc9ec25c1f517f2b307", "rev": "9e377a6ce42dccd9b624ae4ce8f978dc892ba0e2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -99,11 +99,11 @@
] ]
}, },
"locked": { "locked": {
"lastModified": 1617091432, "lastModified": 1617904961,
"narHash": "sha256-L501OfMSE3OadQaEAPTPPJCWdgn3R5hXWzP6EBTGAos=", "narHash": "sha256-M45PTFsPZ6mWQ3UxrTUxlO4D+bXaKQuAsjfcpKBcAa4=",
"owner": "colemickens", "owner": "colemickens",
"repo": "nixpkgs-wayland", "repo": "nixpkgs-wayland",
"rev": "c56fca9357685dea173d81a9be67f7e1375758e3", "rev": "fadd4b3505bca3175f2a00c3e5810ed074b55bb8",
"type": "github" "type": "github"
}, },
"original": { "original": {

View File

@ -1,12 +1,16 @@
final: prev: { final: prev: {
hydrus = prev.hydrus.overrideAttrs (old: rec { hydrus = prev.hydrus.overrideAttrs (old: rec {
pname = "hydrus"; pname = "hydrus";
version = "433"; version = "434";
src = prev.fetchFromGitHub { src = builtins.fetchGit {
owner = "hydrusnetwork"; url = "https://github.com/hydrusnetwork/hydrus.git";
repo = "hydrus"; rev = "71bedccaeabf411307edeac3b03a0903d2c23ec8";
rev = "v433";
sha256 = "sha256-RZKmtVSCkMuJxuGGgk92J0Y71aHRZYsaBmUZy/gC9Ms=";
}; };
postPatch = ''
sed 's;os\.path\.join(\sHC\.BIN_DIR,.*;"${prev.miniupnpc_2}/bin/upnpc";' \
-i ./hydrus/core/networking/HydrusNATPunch.py
sed 's;os\.path\.join(\sHC\.BIN_DIR,.*;"${prev.swftools}/bin/swfrender";' \
-i ./hydrus/core/HydrusFlashHandling.py
'';
}); });
} }