summaryrefslogtreecommitdiff
path: root/pkgs/tmux-lift/default.nix
blob: 3c86176ec933fc0de24a63760ac9ceca48651497 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ stdenv, ... }:
stdenv.mkDerivation {
  name = "tmux-lift";
  version = "1.0.0";

  src = ./.;

  installPhase = ''
    mkdir -p $out/bin
    cp lift unlift $out/bin
  '';

  meta.mainProgram = "lift";
}