Changed the hash checker to sha256 and fixed (hopefully) all-packages.nix.
This commit is contained in:
@@ -1,16 +1,19 @@
|
|||||||
{ stdenv, fetchurl }:
|
{ stdenv, fetchurl, kdelibs }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "eventlist-0.6.95";
|
name = "eventlist-0.6.95";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://kde-look.org/CONTENT/content-files/107779-plasmoid-eventlist-0.6.95.tar.bz2";
|
url = "http://kde-look.org/CONTENT/content-files/107779-plasmoid-eventlist-0.6.95.tar.bz2";
|
||||||
md5 = "67531c52806eee0a6cd911265f1eb9f5";
|
sha256 = "29d3ff0b84353c2e563e05f75cd729b9e2971365eed9b8ce9b38d94f51901b94"
|
||||||
};
|
};
|
||||||
|
|
||||||
doCheck = true;
|
doCheck = true;
|
||||||
|
|
||||||
|
buildInputs = [ kdelibs ];
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
|
inherit (kdelibs.meta) platforms;
|
||||||
description = "KDE Plasmoid to show events and todos on the desktop.";
|
description = "KDE Plasmoid to show events and todos on the desktop.";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
This is a plasmoid to show the events and todos from Akonadi resources (KOrganizer, Birthdays etc.).
|
This is a plasmoid to show the events and todos from Akonadi resources (KOrganizer, Birthdays etc.).
|
||||||
@@ -20,9 +23,8 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
Incidences can be filtered, added, edited, deleted via context menu.
|
Incidences can be filtered, added, edited, deleted via context menu.
|
||||||
'';
|
'';
|
||||||
homepage = http://kde-look.org/content/show.php/Eventlist?content=107779;
|
homepage = "http://kde-look.org/content/show.php/Eventlist?content=107779";
|
||||||
license = "GPLv3+";
|
license = "GPLv3+";
|
||||||
|
|
||||||
platforms = stdenv.lib.platforms.all;
|
};
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -9361,6 +9361,8 @@ let
|
|||||||
else
|
else
|
||||||
callPackage ../applications/graphics/digikam { };
|
callPackage ../applications/graphics/digikam { };
|
||||||
|
|
||||||
|
eventlist = callPackage ../applications/office/eventlist {};
|
||||||
|
|
||||||
k3b = callPackage ../applications/misc/k3b { };
|
k3b = callPackage ../applications/misc/k3b { };
|
||||||
|
|
||||||
kadu = callPackage ../applications/networking/instant-messengers/kadu { };
|
kadu = callPackage ../applications/networking/instant-messengers/kadu { };
|
||||||
|
|||||||
Reference in New Issue
Block a user