summary refs log blame commit diff
path: root/pkgs/tools/misc/i3nator/default.nix
blob: 99f0edeeafd73ec24318b32aef86cbcd367e1931 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13












                                                                    
                                                                       







                                                         
{ lib, fetchFromGitHub, rustPlatform }:

rustPlatform.buildRustPackage rec {
  pname = "i3nator";
  version = "1.2.0";

  src = fetchFromGitHub {
    owner = "pitkley";
    repo = pname;
    rev = version;
    sha256 = "10rxvxq48dhzlw5p9fsj6x0ci4pap85s9b192zakgvk4h97ifp2p";
  };

  cargoSha256 = "04sx1dsznvh60s2yd9bzbvj6fgjvj37vv33qpww13fyph832i37g";

  meta = with lib; {
    description = "Tmuxinator for the i3 window manager";
    homepage = "https://github.com/pitkley/i3nator";
    license = with licenses; [ asl20 ];
    maintainers = with maintainers; [ mpoquet ];
  };
}