21 lines
424 B
Nix
21 lines
424 B
Nix
with import <nixpkgs> {};
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "tw_cli-${version}";
|
|
version = "2.00.11.022";
|
|
|
|
executable = /root/bin/tw_cli.x86_64;
|
|
phases = [ "installPhase" ];
|
|
|
|
installPhase = ''
|
|
install -m755 -D $executable $out/bin/tw_cli
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = "";
|
|
description = "TW_CLI";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ fionera ];
|
|
};
|
|
}
|