mirror of
https://github.com/buckley310/nixos-config.git
synced 2024-11-09 18:47:02 +00:00
packettracer: 8.0.0 -> 8.0.1
This commit is contained in:
parent
1272b2f0b3
commit
5e186adc86
1 changed files with 6 additions and 9 deletions
|
@ -22,22 +22,19 @@
|
||||||
, xlibs
|
, xlibs
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
assert stdenv.hostPlatform.system == "x86_64-linux";
|
||||||
version = "8.0.0";
|
|
||||||
|
|
||||||
srcName =
|
let
|
||||||
if stdenv.hostPlatform.system == "x86_64-linux" then
|
version = "8.0.1";
|
||||||
"PacketTracer_800_amd64_build212_final.deb"
|
|
||||||
else throw "Unsupported system: ${stdenv.hostPlatform.system}";
|
|
||||||
|
|
||||||
ptFiles = stdenv.mkDerivation {
|
ptFiles = stdenv.mkDerivation {
|
||||||
name = "PacketTracer";
|
name = "PacketTracer";
|
||||||
inherit version;
|
inherit version;
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
# This file was uploaded to archive.org by someone else, but I have verified the hash.
|
# This file was uploaded by someone else, but I have verified the hash.
|
||||||
url = "https://archive.org/download/packet-tracer-800-build-212-mac-notarized/${srcName}";
|
url = "https://archive.org/download/cisco-packet-tracer-801/CiscoPacketTracer_801_Ubuntu_64bit.deb";
|
||||||
sha256 = "c9a78f9d1ee63fa421d3c531e9e1c209e425ba84d78c8e606594e4e59df535c9";
|
sha256 = "77a25351b016faed7c78959819c16c7013caa89c6b1872cb888cd96edd259140";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
|
Loading…
Reference in a new issue