Skip to content

Commit

Permalink
fix(nix): added nixpkgs inputs
Browse files Browse the repository at this point in the history
  • Loading branch information
cliarena committed Nov 11, 2024
1 parent 19a7c06 commit 3056511
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 7 deletions.
12 changes: 7 additions & 5 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
{
description = "wolf stream";
inputs = {
# nixpkgs.url = "github:NixOS/nixpkgs/9957cd48326fe8dbd52fdc50dd2502307f188b0d";
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};

outputs = { self, nixpkgs }:
outputs = inputs@{ self,... }:
let
pkgs = nixpkgs.legacyPackages.x86_64-linux;
system = "x86_64-linux";
pkgs = import inputs.nixpkgs { inherit system; };
deps = {
boost-json_src = pkgs.fetchFromGitHub {
owner = "boostorg";
Expand Down

0 comments on commit 3056511

Please sign in to comment.