flake.nix

This commit is contained in:
jackkav 2024-10-01 21:51:14 +02:00
parent 883a193089
commit 2fdd6b1969
2 changed files with 11 additions and 31 deletions

View File

@ -1,27 +1,11 @@
{ {
"nodes": { "nodes": {
"electron-31-nixpkgs": {
"locked": {
"lastModified": 1724146343,
"narHash": "sha256-SLB5mmhHGLhb7npka7lPrIwymuOAHrsLblkWImLh2HE=",
"owner": "nixos",
"repo": "nixpkgs",
"rev": "a04eac9c5aa7f82e02d6e9e0b203b6eb5704c141",
"type": "github"
},
"original": {
"owner": "nixos",
"repo": "nixpkgs",
"rev": "a04eac9c5aa7f82e02d6e9e0b203b6eb5704c141",
"type": "github"
}
},
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1724855419, "lastModified": 1725001927,
"narHash": "sha256-WXHSyOF4nBX0cvHN3DfmEMcLOVdKH6tnMk9FQ8wTNRc=", "narHash": "sha256-eV+63gK0Mp7ygCR0Oy4yIYSNcum2VQwnZamHxYTNi+M=",
"path": "/nix/store/s6d8irfyp66lvy9kapbfp2ass36c8lfl-source", "path": "/nix/store/1h99qq6970gkx3j0m9w4yrrl9y99y1nk-source",
"rev": "ae2fc9e0e42caaf3f068c1bfdc11c71734125e06", "rev": "6e99f2a27d600612004fbd2c3282d614bfee6421",
"type": "path" "type": "path"
}, },
"original": { "original": {
@ -31,11 +15,11 @@
}, },
"nixpkgs-unstable": { "nixpkgs-unstable": {
"locked": { "locked": {
"lastModified": 1725194671, "lastModified": 1727747005,
"narHash": "sha256-tLGCFEFTB5TaOKkpfw3iYT9dnk4awTP/q4w+ROpMfuw=", "narHash": "sha256-2PBox0LkPhxirg1asEIpvfFARjq5KLw0EHPCy4unjPs=",
"owner": "nixos", "owner": "nixos",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "b833ff01a0d694b910daca6e2ff4a3f26dee478c", "rev": "9682b2197dabc185fcca802ac1ac21136e48fcc2",
"type": "github" "type": "github"
}, },
"original": { "original": {
@ -47,7 +31,6 @@
}, },
"root": { "root": {
"inputs": { "inputs": {
"electron-31-nixpkgs": "electron-31-nixpkgs",
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nixpkgs-unstable": "nixpkgs-unstable" "nixpkgs-unstable": "nixpkgs-unstable"
} }

View File

@ -1,6 +1,5 @@
{ {
inputs = { inputs = {
electron-31-nixpkgs.url = "github:nixos/nixpkgs/a04eac9c5aa7f82e02d6e9e0b203b6eb5704c141";
nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable"; nixpkgs-unstable.url = "github:nixos/nixpkgs/nixpkgs-unstable";
}; };
outputs = { self, nixpkgs, ... }@inputs: outputs = { self, nixpkgs, ... }@inputs:
@ -13,17 +12,15 @@
(system: (system:
let let
pkgs = nixpkgs.legacyPackages.${system}; pkgs = nixpkgs.legacyPackages.${system};
unstable =inputs.nixpkgs-unstable.legacyPackages.${system};
in in
pkgs.mkShell { pkgs.mkShell {
buildInputs = [ buildInputs = [
inputs.nixpkgs-unstable.legacyPackages.${system}.nodejs_20 unstable.nodejs_20
inputs.electron-31-nixpkgs.legacyPackages.${system}.electron pkgs.yarn
]; ];
packages = [ ELECTRON_OVERRIDE_DIST_PATH = "${unstable.electron_31}/bin/";
];
ELECTRON_OVERRIDE_DIST_PATH = "${inputs.electron-31-nixpkgs.legacyPackages.${system}.electron}/bin/";
ELECTRON_SKIP_BINARY_DOWNLOAD = 1; ELECTRON_SKIP_BINARY_DOWNLOAD = 1;
LD_LIBRARY_PATH = "${pkgs.stdenv.cc.cc.lib}/lib64:$LD_LIBRARY_PATH"; LD_LIBRARY_PATH = "${pkgs.stdenv.cc.cc.lib}/lib64:$LD_LIBRARY_PATH";
}); });