summary refs log tree commit diff
path: root/pkgs/development/libraries/protobufc/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/protobufc/default.nix')
-rw-r--r--pkgs/development/libraries/protobufc/default.nix27
1 files changed, 14 insertions, 13 deletions
diff --git a/pkgs/development/libraries/protobufc/default.nix b/pkgs/development/libraries/protobufc/default.nix
index 58c639ee604..4d2c1d4349f 100644
--- a/pkgs/development/libraries/protobufc/default.nix
+++ b/pkgs/development/libraries/protobufc/default.nix
@@ -1,22 +1,23 @@
-{ fetchurl, stdenv, zlib, protobuf }:
+{ stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, protobuf, zlib }:
 
 stdenv.mkDerivation rec {
-  name = "protobuf-c-0.15";
+  name = "protobuf-c-${version}";
+  version = "1.0.2";
 
-  src = fetchurl {
-    url = "http://protobuf-c.googlecode.com/files/${name}.tar.gz";
-    sha256 = "0dh0180lzqk6n1r0qk38kgdy4x15mpkg5j4g2r31qhx52f757jwg";
+  src = fetchFromGitHub {
+    owner = "protobuf-c";
+    repo = "protobuf-c";
+    rev = "v${version}";
+    sha256 = "1harabw7qdgcmh098664xkcv8bkyach6i35sisc40yhvagr3fzsz";
   };
 
-  buildInputs = [ protobuf ];
+  buildInputs = [ autoreconfHook pkgconfig protobuf zlib ];
 
-  doCheck = true;
-
-  meta = {
+  meta = with stdenv.lib; {
+    homepage = http://github.com/protobuf-c/protobuf-c/;
     description = "C bindings for Google's Protocol Buffers";
-
-    license = "BSD";
-
-    homepage = http://code.google.com/p/protobuf-c/;
+    license = licenses.bsd2;
+    platforms = platforms.all;
+    maintainers = with maintainers; [ wkennington ];
   };
 }