DEVELOPMENT ENVIRONMENT

~liljamo/hare-rust-ffi-test

ref: b76de4b1f83c99c225c83e958636fd6dca09eedf hare-rust-ffi-test/flake.nix -rw-r--r-- 416 bytes
b76de4b1Jonni Liljamo feat: init 4 days ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
  inputs = {
    #nixpkgs.url = "github:nixos/nixpkgs/nixpkgs-unstable";
    nixpkgs.url = "github:liljamo/nixpkgs/hare-0.25.2";
  };

  outputs = inputs @ {...}: let
    pkgs = inputs.nixpkgs.legacyPackages."x86_64-linux";
  in {
      devShells.x86_64-linux.default = pkgs.mkShell {
        buildInputs = with pkgs;
          [
            hare
            cargo

            just
          ];
      };
    };
}