home

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 85d1642efc3f5b4458dfdf41271308ee1abfc162
parent ca2b2054bb10df5428ecd97ee8aa84cf6146d503
Author: Vincent Demeester <vincent@sbr.pm>
Date:   Tue, 14 Aug 2018 15:48:01 +0200

Add op to overlay and use it on hokkaido

Signed-off-by: Vincent Demeester <vincent@sbr.pm>

Diffstat:
Mhokkaido.nix | 1+
Moverlays/sbr.nix | 8+++++++-
2 files changed, 8 insertions(+), 1 deletion(-)

diff --git a/hokkaido.nix b/hokkaido.nix @@ -12,6 +12,7 @@ ./dev.haskell.nix ]; home.packages = with pkgs; [ + op vscode ]; } diff --git a/overlays/sbr.nix b/overlays/sbr.nix @@ -1,7 +1,13 @@ self: super: { + dobi = import ../pkgs/dobi { + inherit (super) stdenv lib fetchFromGitHub buildGoPackage; + }; + op = import ../pkgs/op { + inherit (super) stdenv lib fetchurl patchelf unzip file; + }; prm = import ../pkgs/prm { - inherit (super) stdenv lib buildGoPackage fetchgit; + inherit (super) stdenv lib buildGoPackage fetchgit; }; tmux-tpm = import ../pkgs/tmux-tpm { inherit (super) stdenv lib fetchFromGitHub;