nixpkgs

My nixpkg collection
git clone https://git.in0rdr.ch/nixpkgs.git
Log | Files | Refs | Pull requests |Archive | README

shell.nix (185B)


      1 { pkgs ? import <nixpkgs> {} }:
      2   pkgs.mkShell {
      3     nativeBuildInputs = with pkgs.buildPackages; [
      4       pkg-config
      5       openssl
      6       lz4
      7       zstd
      8       xxHash
      9       acl
     10     ];
     11 }
     12