From 86d5adbc835caa4480f8fde1e7b6cc4c3d23ca04 Mon Sep 17 00:00:00 2001 From: horhik Date: Fri, 11 Feb 2022 19:43:30 +0300 Subject: [PATCH] update default.nix --- default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/default.nix b/default.nix index 685ceaa..7eb66df 100644 --- a/default.nix +++ b/default.nix @@ -10,7 +10,7 @@ let packageOverrides = super: let self = super.pkgs; in rec { haskell = super.haskell // { packageOverrides = self: super: { - haskell-nix = super.callCabal2nix "timecode-generator" (gitIgnore [./.gitignore] ./.) {}; + timecode-generator = super.callCabal2nix "timecode-generator" (gitIgnore [./.gitignore] ./.) {}; }; }; }; @@ -19,7 +19,7 @@ let in { inherit pkgs; shell = compilerSet.shellFor { - packages = p: [p.haskell-nix]; + packages = p: [p.timecode-generator]; buildInputs = with pkgs; [ compilerSet.cabal-install haskellPackages.tagsoup