gdata-sharp: init at 2.2.0.0
This commit is contained in:
parent
2edba48531
commit
04d2c5f118
2 changed files with 40 additions and 0 deletions
38
pkgs/development/libraries/gdata-sharp/default.nix
Normal file
38
pkgs/development/libraries/gdata-sharp/default.nix
Normal file
|
@ -0,0 +1,38 @@
|
|||
{ stdenv, fetchsvn, pkgconfig, mono, dotnetPackages }:
|
||||
|
||||
let
|
||||
newtonsoft-json = dotnetPackages.NewtonsoftJson;
|
||||
in stdenv.mkDerivation rec {
|
||||
name = "gdata-sharp-${version}";
|
||||
version = "2.2.0.0";
|
||||
|
||||
src = fetchsvn {
|
||||
url = "http://google-gdata.googlecode.com/svn/trunk/";
|
||||
rev = "1217";
|
||||
sha256 = "0b0rvgg3xsbbg2fdrpz0ywsy9rcahlyfskndaagd3yzm83gi6bhk";
|
||||
};
|
||||
|
||||
buildInputs = [ pkgconfig mono newtonsoft-json ];
|
||||
|
||||
sourceRoot = "svn-r1217/clients/cs";
|
||||
|
||||
dontStrip = true;
|
||||
|
||||
postPatch = ''
|
||||
sed -i -e 's#^\(DEFINES=.*\)\(.\)#\1 /r:third_party/Newtonsoft.Json.dll\2#' Makefile
|
||||
# carriage return ^
|
||||
'';
|
||||
|
||||
makeFlags = [ "PREFIX=$(out)" ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://code.google.com/archive/p/google-gdata/;
|
||||
|
||||
description = "The Google Data APIs";
|
||||
longDescription = ''
|
||||
The Google Data APIs provide a simple protocol for reading and writing
|
||||
data on the web.
|
||||
'';
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -7029,6 +7029,8 @@ let
|
|||
|
||||
pangox_compat = callPackage ../development/libraries/pangox-compat { };
|
||||
|
||||
gdata-sharp = callPackage ../development/libraries/gdata-sharp { };
|
||||
|
||||
gdk_pixbuf = callPackage ../development/libraries/gdk-pixbuf { };
|
||||
|
||||
gnome-sharp = callPackage ../development/libraries/gnome-sharp {};
|
||||
|
|
Loading…
Reference in a new issue