[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[nongnu] elpa/haskell-mode 3e8ff53576 3/4: Prefer nix profile to nix-env
|
From: |
ELPA Syncer |
|
Subject: |
[nongnu] elpa/haskell-mode 3e8ff53576 3/4: Prefer nix profile to nix-env |
|
Date: |
Tue, 16 Jan 2024 13:00:16 -0500 (EST) |
branch: elpa/haskell-mode
commit 3e8ff53576fa716ea249f1ee372706f7f461462e
Author: Steve Purcell <steve@sanityinc.com>
Commit: GitHub <noreply@github.com>
Prefer nix profile to nix-env
---
.github/workflows/test.yml | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index c542bbe705..d8d35c7339 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -37,10 +37,10 @@ jobs:
- uses: actions/checkout@v4
- name: Install stack and ghc
- run: nix-env -iA stack ghc -f '<nixpkgs>'
+ run: nix profile install 'nixpkgs#stack' 'nixpkgs#ghc'
- name: Install texinfo
if: matrix.target == 'deploy-manual'
- run: nix-env -iA texinfo -f '<nixpkgs>'
+ run: nix profile install 'nixpkgs#texinfo'
- name: Run make
run: make ${{ matrix.target || 'check' }}
continue-on-error: ${{ matrix.emacs_version == 'snapshot' && (!
matrix.target) }}