remove powerline-go backport

This commit is contained in:
Sean Buckley 2021-06-01 15:19:39 -04:00
parent d0d201cf54
commit c583ed5002
2 changed files with 0 additions and 21 deletions

View file

@ -2,7 +2,6 @@
{
imports = [
./modules/alacritty.nix
./modules/backports.nix
./modules/baseline.nix
./modules/cli.nix
./modules/gnome.nix

View file

@ -1,20 +0,0 @@
{ lib, ... }:
let
rev = "00783f3f041491fc8b290da3494187b7f47100c0";
backport = (name: path: sha256: self: super: {
${name} = super.callPackage
(super.fetchurl {
inherit sha256;
url = "https://raw.githubusercontent.com/NixOS/nixpkgs/${rev}/pkgs/${path}";
})
{ };
});
in
{
nixpkgs.overlays =
[
(backport "powerline-go" "tools/misc/powerline-go/default.nix" "3f5bceb483167dfea7bfb88bd3226c375be9564a8b321096bf1456c905acb90b")
];
}