Skip to content

Commit

Permalink
Merge pull request #24492 from ndowens/parcellite
Browse files Browse the repository at this point in the history
parcellite: 1.1.9 -> 1.2.1
  • Loading branch information
NeQuissimus committed Mar 31, 2017
2 parents 5c28f26 + 5eece28 commit b625252
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions pkgs/tools/misc/parcellite/default.nix
Original file line number Diff line number Diff line change
@@ -1,19 +1,24 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk2 }:
{ stdenv, fetchFromGitHub, autoreconfHook
, gtk2, intltool, pkgconfig }:

stdenv.mkDerivation rec {
name = "parcellite-1.1.9";
name = "parcellite-${version}";
version = "1.2.1";

src = fetchurl {
url = "mirror://sourceforge/parcellite/${name}.tar.gz";
sha256 = "1m0igxny8f8hlbwcbsr4vg08808sqwy05h61ia2bxsrf122rba6b";
src = fetchFromGitHub {
owner = "rickyrockrat";
repo = "parcellite";
rev = version;
sha256 = "19q4x6x984s6gxk1wpzaxawgvly5vnihivrhmja2kcxhzqrnfhiy";
};

buildInputs = [ pkgconfig intltool gtk2 ];
nativeBuildInputs = [ autoreconfHook intltool pkgconfig ];
buildInputs = [ gtk2 ];

meta = {
meta = with stdenv.lib; {
description = "Lightweight GTK+ clipboard manager";
homepage = "http://parcellite.sourceforge.net";
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.linux;
homepage = https://github.com/rickyrockrat/parcellite;
license = licenses.gpl3Plus;
platforms = platforms.linux;
};
}

0 comments on commit b625252

Please sign in to comment.