Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

liboping: 1.9.0 -> 1.10.0

authored by volth and committed by Franz Pletz ad38b7c9 f4c53f19

+3 -3
+3 -3
pkgs/development/libraries/liboping/default.nix
··· 1 1 { stdenv, fetchurl, ncurses ? null, perl ? null }: 2 2 3 3 stdenv.mkDerivation rec { 4 - name = "liboping-1.9.0"; 4 + name = "liboping-1.10.0"; 5 5 6 6 src = fetchurl { 7 7 url = "http://verplant.org/liboping/files/${name}.tar.bz2"; 8 - sha256 = "0c1mdx9ixqypayhm617jjv9kr6y60nh3mnryafjzv23bnn41vfs4"; 8 + sha256 = "1n2wkmvw6n80ybdwkjq8ka43z2x8mvxq49byv61b52iyz69slf7b"; 9 9 }; 10 10 11 11 buildInputs = [ ncurses perl ]; ··· 23 23 ''; 24 24 homepage = http://noping.cc/; 25 25 license = licenses.lgpl21; 26 - platforms = platforms.linux; 26 + platforms = platforms.unix; 27 27 maintainers = [ maintainers.bjornfor ]; 28 28 }; 29 29 }