mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 21:21:06 +00:00
vpcs: init at 0.8
This commit is contained in:
parent
f717af03ad
commit
6373c9606d
41
pkgs/applications/virtualization/vpcs/default.nix
Normal file
41
pkgs/applications/virtualization/vpcs/default.nix
Normal file
|
@ -0,0 +1,41 @@
|
|||
{ stdenv, fetchurl, cmake, glibc, buildPlatform }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "vpcs";
|
||||
version = "0.8";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/${pname}/${version}/${name}-src.tbz";
|
||||
sha256 = "14y9nflcyq486vvw0na0fkfmg5dac004qb332v4m5a0vaz8059nw";
|
||||
};
|
||||
|
||||
unpackCmd = "tar -xjf $src";
|
||||
|
||||
buildInputs = [ glibc.static ];
|
||||
|
||||
buildPhase = ''
|
||||
cd src
|
||||
./mk.sh ${buildPlatform.platform.kernelArch}
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
cd ..
|
||||
|
||||
install -D -m555 src/vpcs $out/bin/vpcs;
|
||||
install -D -m444 man/vpcs.1 $out/share/man/man1/vpcs.1;
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Virtual PC simulator";
|
||||
longDescription = ''
|
||||
The VPCS can simulate up to 9 PCs. You can ping/traceroute them, or
|
||||
ping/traceroute the other hosts/routers from the VPCS when you study the
|
||||
Cisco routers in the dynamips.
|
||||
'';
|
||||
homepage = "https://sourceforge.net/projects/vpcs/";
|
||||
license = licenses.bsd2;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ primeos ];
|
||||
};
|
||||
}
|
|
@ -16686,6 +16686,8 @@ with pkgs;
|
|||
else null;
|
||||
};
|
||||
|
||||
vpcs = callPackage ../applications/virtualization/vpcs { };
|
||||
|
||||
primusLib = callPackage ../tools/X11/primus/lib.nix {
|
||||
nvidia_x11 = linuxPackages.nvidia_x11.override { libsOnly = true; };
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue