Files
p2p-rendering-computation/default.nix

14 lines
172 B
Nix

{ nixpkgs ? import <nixpkgs> { } }:
let
pkgs = [
nixpkgs.go
nixpkgs.tmux
];
in
nixpkgs.stdenv.mkDerivation {
name = "env";
buildInputs = pkgs;
}