20 lines
307 B
Nix
20 lines
307 B
Nix
{ stdenv }:
|
|
stdenv.mkDerivation rec {
|
|
name = "kanshi-fix-${version}";
|
|
version = "1.4";
|
|
|
|
src = ./.;
|
|
|
|
nativeBuildInputs = [ ];
|
|
buildInputs = [ ];
|
|
|
|
dontConfigure = true;
|
|
buildPhase = ''
|
|
chmod 0755 kanshi-fix
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp kanshi-fix $out/bin
|
|
'';
|
|
}
|