at 17.09-beta 33 lines 881 B view raw
1{ fetchFromGitHub, stdenv, autoreconfHook }: 2 3stdenv.mkDerivation rec { 4 name = "libupnp-${version}"; 5 version = "1.6.21"; 6 7 src = fetchFromGitHub { 8 owner = "mrjimenez"; 9 repo = "pupnp"; 10 rev = "release-${version}"; 11 sha256 = "07ksfhadinaa20542gblrxi9pqz0v6y70a836hp3qr4037id4nm9"; 12 }; 13 14 nativeBuildInputs = [ autoreconfHook ]; 15 16 hardeningDisable = [ "fortify" ]; 17 18 meta = { 19 description = "libupnp, an open source UPnP development kit for Linux"; 20 21 longDescription = '' 22 The Linux SDK for UPnP Devices (libupnp) provides developers 23 with an API and open source code for building control points, 24 devices, and bridges that are compliant with Version 1.0 of the 25 UPnP Device Architecture Specification. 26 ''; 27 28 license = "BSD-style"; 29 30 homepage = http://pupnp.sourceforge.net/; 31 platforms = stdenv.lib.platforms.unix; 32 }; 33}