about summary refs log tree commit diff
path: root/pkgs/larbs-mail/mailbox-script.nix
blob: 2571a53451d43855b93dfad9f8afdbd4271fee16 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ stdenv, fetchgit }:
stdenv.mkDerivation {
  name = "mailbox";

  src = fetchgit {
    url = "https://github.com/LukeSmithxyz/voidrice";
    rev = "b768fc601e9b587aa800cd0656a8eee170bd1c93";
    sha256 = "1i35n0qfh0llfg1b8la9yj7qsycwlmipgfp6k1yz9r27gjll768z";
  };

  installPhase = ''
    mkdir -p $out/bin
    cp .local/bin/statusbar/mailbox $out/bin/mailbox
  '';
}