blob: a9ec2410a68787756eeccaf2f8a13a2b1345e3a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ stdenv, pkgs, libX11, ... }:
with pkgs.lib;
stdenv.mkDerivation rec {
name = "local-shotkey-${version}";
version = "0.1.0";
src = ./source;
buildInputs = [ libX11 ];
unpackPhase = ''cp -r $src/* .'';
buildPhase = ''make'';
installPhase = ''make PREFIX=$out DESTDIR="" install'';
}
|