diff options
author | Ben Sima <ben@bsima.me> | 2020-04-19 18:04:47 -0700 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2020-04-19 18:04:47 -0700 |
commit | 32fd9bd3fe6d9e3b52d85cf701bc9b0998a54412 (patch) | |
tree | d5460fdde3624530ab4831b8b858512da079d804 /nix/nixpkgs.nix | |
parent | b2d4cafe1f71b338f6c1d3d8b876e2de075f41db (diff) |
Fix typo
Diffstat (limited to 'nix/nixpkgs.nix')
-rw-r--r-- | nix/nixpkgs.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/nixpkgs.nix b/nix/nixpkgs.nix index a5d1640..74039e0 100644 --- a/nix/nixpkgs.nix +++ b/nix/nixpkgs.nix @@ -6,7 +6,7 @@ let (_: _: { inherit sources; }) (_: _: { niv = import sources.niv {}; }) (import ./haskell-packages.nix) - (_: pkgs: { wemux = super.callPackage ./wemux.nix {}; }) + (_: pkgs: { wemux = pkgs.callPackage ./wemux.nix {}; }) ]; }; in nixpkgs |