We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 775380b commit 5606078Copy full SHA for 5606078
.gitignore
@@ -4,3 +4,4 @@
4
/cfg.h
5
/TAGS
6
/archive/
7
+/result
default.nix
@@ -0,0 +1,14 @@
1
+{ nixpkgs ? import <nixpkgs> {} }:
2
+
3
+with nixpkgs;
+stdenv.mkDerivation {
+ name = "cmdtree";
+ src = ./.;
8
+ buildPhase = "make";
9
+ installPhase = ''
10
+ mkdir -p $out/bin
11
+ cp ./cmdtree $out/bin
12
+ '';
13
+ buildInputs = [ pkgs.xorg.libX11 pkgs.xorg.libXft ];
14
+}
0 commit comments