1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 09:02:46 +00:00

Merge pull request #24492 from ndowens/parcellite

parcellite: 1.1.9 -> 1.2.1
This commit is contained in:
Tim Steinbach 2017-03-30 22:10:40 -04:00 committed by GitHub
commit b6252523bf

View file

@ -1,19 +1,24 @@
{ stdenv, fetchurl, pkgconfig, intltool, gtk2 }: { stdenv, fetchFromGitHub, autoreconfHook
, gtk2, intltool, pkgconfig }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "parcellite-1.1.9"; name = "parcellite-${version}";
version = "1.2.1";
src = fetchurl { src = fetchFromGitHub {
url = "mirror://sourceforge/parcellite/${name}.tar.gz"; owner = "rickyrockrat";
sha256 = "1m0igxny8f8hlbwcbsr4vg08808sqwy05h61ia2bxsrf122rba6b"; 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"; description = "Lightweight GTK+ clipboard manager";
homepage = "http://parcellite.sourceforge.net"; homepage = https://github.com/rickyrockrat/parcellite;
license = stdenv.lib.licenses.gpl3Plus; license = licenses.gpl3Plus;
platforms = stdenv.lib.platforms.linux; platforms = platforms.linux;
}; };
} }