Remove <unstable> from briefcase

I don't use this anywhere, so it's time to shed more weight.
This commit is contained in:
William Carroll 2020-08-18 14:24:27 +01:00
parent 33890d8a8b
commit 784de28be4
2 changed files with 2 additions and 7 deletions

View file

@ -11,11 +11,6 @@ let
ref = "nixos-20.03";
rev = "afa9ca61924f05aacfe495a7ad0fd84709d236cc";
}) {};
unstable = import (builtins.fetchGit {
url = "https://github.com/NixOS/nixpkgs-channels";
ref = "nixos-unstable";
rev = "dc80d7bc4a244120b3d766746c41c0d9c5f81dfa";
}) {};
briefcase = import (builtins.path {
path = ./.;
name = "briefcase";

View file

@ -1,5 +1,5 @@
{ pkgs, unstable, briefcase, depot, ... }:
{ pkgs, briefcase, depot, ... }:
# Exposing these to be available as briefcase.third_party.pkgs for example.
{ inherit pkgs unstable briefcase depot; }
{ inherit pkgs briefcase depot; }