Files
nixpkgs/pkgs/by-name/vk/vk-cli/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

63 lines
1.2 KiB
Nix

{
stdenv,
lib,
fetchurl,
curl,
p7zip,
glibc,
ncurses,
openssl,
}:
stdenv.mkDerivation rec {
pname = "vk-cli";
version = "0.7.6";
src = fetchurl {
url = "https://github.com/vk-cli/vk/releases/download/${version}/vk-${version}-64-bin.7z";
sha256 = "sha256-Y40oLjddunrd7ZF1JbCcgjSCn8jFTubq69jhAVxInXw=";
};
nativeBuildInputs = [
p7zip
];
buildInputs = [
curl
ncurses
openssl
];
unpackPhase = ''
mkdir -p $TMP/
7z x $src -o$TMP/
'';
installPhase = ''
mkdir -p $out/bin/
mv $TMP/vk-${version}-64-bin vk-cli
install -D vk-cli --target-directory=$out/bin/
'';
postFixup = ''
patchelf $out/bin/vk-cli \
--set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
--set-rpath "${
lib.makeLibraryPath [
curl
glibc
]
}"
'';
meta = with lib; {
description = "Console (ncurses) client for vk.com written in D";
mainProgram = "vk-cli";
homepage = "https://github.com/vk-cli/vk";
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.asl20;
maintainers = [ ];
platforms = [ "x86_64-linux" ];
};
}