xfce.thunar-dropbox-plugin: 0.2.1 -> 0.3.1

This commit is contained in:
worldofpeace 2019-11-05 17:49:51 -05:00
parent 793d1997c5
commit af97f57fdb

View File

@ -1,31 +1,39 @@
{ stdenv, fetchurl, pkgconfig { stdenv
, gtk2 , fetchFromGitHub
, thunar, python2, hicolor-icon-theme , pkgconfig
, wafHook , gtk3
, thunar
, cmake
, ninja
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
p_name = "thunar-dropbox-plugin"; pname = "thunar-dropbox";
ver_maj = "0.2"; version = "0.3.1";
ver_min = "1";
name = "${p_name}-${ver_maj}.${ver_min}";
src = fetchurl { src = fetchFromGitHub {
url = "http://softwarebakery.com/maato/files/thunar-dropbox/thunar-dropbox-${ver_maj}.${ver_min}.tar.bz2"; owner = "Jeinzi";
sha256 = "08vhzzzwshyz371yl7fzfylmhvchhv3s5kml3dva4v39jhvrpnkf"; repo = "thunar-dropbox";
rev = version;
sha256 = "1fshjvh542ffa8npfxv3cassgn6jclb2ix9ir997y4k0abzp1fxb";
}; };
nativeBuildInputs = [ pkgconfig wafHook ]; nativeBuildInputs = [
pkgconfig
cmake
ninja
];
buildInputs = [ buildInputs = [
gtk2 thunar
thunar python2 hicolor-icon-theme gtk3
]; ];
enableParallelBuilding = true; enableParallelBuilding = true;
meta = with stdenv.lib; { meta = with stdenv.lib; {
homepage = http://softwarebakery.com/maato/thunar-dropbox.html; homepage = "https://github.com/Jeinzi/thunar-dropbox";
description = "A plugin for thunar that adds context-menu items from dropbox"; description = "A plugin that adds context-menu items for Dropbox to Thunar";
license = licenses.gpl3; license = licenses.gpl3;
platforms = platforms.linux; platforms = platforms.linux;
}; };