Skip to content

Commit 839dd4d

Browse files
committed
fix(nix): added nixpkgs inputs
1 parent 14deb28 commit 839dd4d

File tree

2 files changed

+14
-7
lines changed

2 files changed

+14
-7
lines changed

flake.lock

+7-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

flake.nix

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{
22
description = "wolf stream";
3+
inputs = {
4+
# nixpkgs.url = "github:NixOS/nixpkgs/9957cd48326fe8dbd52fdc50dd2502307f188b0d";
5+
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
6+
};
37

4-
outputs = { self, nixpkgs }:
8+
outputs = inputs@{ self,... }:
59
let
6-
pkgs = nixpkgs.legacyPackages.x86_64-linux;
10+
system = "x86_64-linux";
11+
pkgs = import inputs.nixpkgs { inherit system; };
712
deps = {
813
boost-json_src = pkgs.fetchFromGitHub {
914
owner = "boostorg";

0 commit comments

Comments
 (0)