serd: 0.26.0 -> 0.28.0

wip/yesman
Bart Brouns 7 years ago committed by Orivej Desh
parent 11d0cccf56
commit 42ddb8ae2a
  1. 15
      pkgs/development/libraries/serd/default.nix

@ -1,22 +1,21 @@
{ stdenv, fetchurl, pcre, pkgconfig, python }:
{ stdenv, fetchurl, pkgconfig, python }:
stdenv.mkDerivation rec {
name = "serd-${version}";
version = "0.26.0";
version = "0.28.0";
src = fetchurl {
url = "http://download.drobilla.net/${name}.tar.bz2";
sha256 = "164j43am4hka2vbzw4n52zy7rafgp6kmkgbcbvap368az644mr73";
sha256 = "1v4ai4zyj1q3255nghicns9817jkwb3bh60ssprsjmnjfj41mwhx";
};
nativeBuildInputs = [ pkgconfig ];
buildInputs = [ pcre python ];
nativeBuildInputs = [ pkgconfig python ];
configurePhase = "${python.interpreter} waf configure --prefix=$out";
configurePhase = "python waf configure --prefix=$out";
buildPhase = "${python.interpreter} waf";
buildPhase = "python waf";
installPhase = "${python.interpreter} waf install";
installPhase = "python waf install";
meta = with stdenv.lib; {
homepage = http://drobilla.net/software/serd;

Loading…
Cancel
Save