Skip to content

Commit

Permalink
libupnp: 1.6.20 -> 1.6.21
Browse files Browse the repository at this point in the history
  • Loading branch information
globin committed Jan 18, 2017
1 parent 6ced9ee commit ce0e16f
Showing 1 changed file with 4 additions and 12 deletions.
16 changes: 4 additions & 12 deletions pkgs/development/libraries/pupnp/default.nix
@@ -1,28 +1,20 @@
{ fetchFromGitHub, stdenv, autoconf, automake, libtool }:
{ fetchFromGitHub, stdenv, autoreconfHook }:

stdenv.mkDerivation rec {
name = "libupnp-${version}";
version = "1.6.20";
version = "1.6.21";

src = fetchFromGitHub {
owner = "mrjimenez";
repo = "pupnp";
rev = "release-${version}";
sha256 = "10583dkz1l5sjp2833smql8w428x2nbh1fni8j6h9rji6ma2yhs0";
sha256 = "07ksfhadinaa20542gblrxi9pqz0v6y70a836hp3qr4037id4nm9";
};

buildInputs = [
autoconf
automake
libtool
];
nativeBuildInputs = [ autoreconfHook ];

hardeningDisable = [ "fortify" ];

preConfigure = ''
./bootstrap
'';

meta = {
description = "libupnp, an open source UPnP development kit for Linux";

Expand Down

0 comments on commit ce0e16f

Please sign in to comment.