Skip to content

Commit

Permalink
travis-env: avoid top-level with in shell.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
philiptaron authored and fricklerhandwerk committed Jul 29, 2024
1 parent 4c7b496 commit fc267a3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions pkgs/development/tools/misc/travis/shell.nix
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
# Env to update Gemfile.lock / gemset.nix

with import <nixpkgs> {};
stdenv.mkDerivation {
{
pkgs ? import ../../../../.. { },
}:
pkgs.stdenv.mkDerivation {
name = "env";
buildInputs = [
buildInputs = with pkgs; [
ruby.devEnv
gnumake
bundix
Expand Down

0 comments on commit fc267a3

Please sign in to comment.