cmdtree

A trie command launcher for X11
git clone git://jb55.com/cmdtree
Log | Files | Refs | README | LICENSE

default.nix (202B)


      1 { pkgs ? import <nixpkgs> {} }:
      2 
      3 pkgs.stdenv.mkDerivation {
      4   pname = "cmdtree";
      5   version = "0.1";
      6   src = ./.;
      7   makeFlags = "PREFIX=$(out)";
      8   buildInputs = with pkgs; [ xorg.libX11 xorg.libXft ];
      9 }