mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
gen6dns: install manpage
This commit is contained in:
parent
9c0908cb82
commit
9c7d190b73
@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchurl }:
|
||||
{ lib, stdenv, fetchurl, installShellFiles }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gen6dns";
|
||||
@ -9,10 +9,16 @@ stdenv.mkDerivation rec {
|
||||
hash = "sha256-MhYfgzbGPmrhPx89EpObrEkxaII7uz4TbWXeEGF7Xws=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ installShellFiles ];
|
||||
|
||||
preInstall = ''
|
||||
mkdir -p $out/bin
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
installManPage gen6dns.1
|
||||
'';
|
||||
|
||||
makeFlags = [ "INSTALL_DIR=$(out)/bin" ];
|
||||
|
||||
meta = with lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user