Commit 85d1642efc3f

Vincent Demeester <vincent@sbr.pm>
2018-08-14 15:48:01
Add op to overlay and use it on hokkaido
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
1 parent ca2b205
Changed files (2)
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;
hokkaido.nix
@@ -12,6 +12,7 @@
     ./dev.haskell.nix
   ];
   home.packages = with pkgs; [
+    op
     vscode
   ];
 }