summary refs log tree commit diff
path: root/pkgs/desktops/cinnamon
diff options
context:
space:
mode:
authorRoelof Wobben <rwobben@hotmail.com>2013-12-02 08:58:56 +0100
committerVladimír Čunát <vcunat@gmail.com>2013-12-02 21:21:45 +0100
commit81460560c3114fd36e7e0249ce033c55003ca1a5 (patch)
treec07e5da70ee70c2ea21377619dfe283ba1592fa8 /pkgs/desktops/cinnamon
parent1e0865ce627edf34d5c2ce86b475d4882d978597 (diff)
downloadnixpkgs-81460560c3114fd36e7e0249ce033c55003ca1a5.tar
nixpkgs-81460560c3114fd36e7e0249ce033c55003ca1a5.tar.gz
nixpkgs-81460560c3114fd36e7e0249ce033c55003ca1a5.tar.bz2
nixpkgs-81460560c3114fd36e7e0249ce033c55003ca1a5.tar.lz
nixpkgs-81460560c3114fd36e7e0249ce033c55003ca1a5.tar.xz
nixpkgs-81460560c3114fd36e7e0249ce033c55003ca1a5.tar.zst
nixpkgs-81460560c3114fd36e7e0249ce033c55003ca1a5.zip
add cinnamon-desktop (close #1314)
Reviewed and refactored by @vcunat.
Diffstat (limited to 'pkgs/desktops/cinnamon')
-rw-r--r--pkgs/desktops/cinnamon/cinnamon-desktop.nix41
1 files changed, 41 insertions, 0 deletions
diff --git a/pkgs/desktops/cinnamon/cinnamon-desktop.nix b/pkgs/desktops/cinnamon/cinnamon-desktop.nix
new file mode 100644
index 00000000000..d3cf04e835d
--- /dev/null
+++ b/pkgs/desktops/cinnamon/cinnamon-desktop.nix
@@ -0,0 +1,41 @@
+{ stdenv, fetchurl, pkgconfig, autoreconfHook, intltool
+, glib, gobjectIntrospection, gdk_pixbuf, gtk3, gnome_common
+, xorg, xkeyboard_config
+}:
+
+let
+  version = "2.0.4";
+in
+stdenv.mkDerivation {
+  name = "cinnamon-desktop-${version}";
+
+  src = fetchurl {
+    url = "http://github.com/linuxmint/cinnamon-desktop/archive/${version}.tar.gz";
+    sha256 = "1cywin712558pv58c0cr73m25hfcv5x8pv5frvqjr9gwr2gpi6h3";
+  };
+
+  NIX_CFLAGS_COMPILE = "-I${glib}/include/gio-unix-2.0";
+
+  buildInputs = with xorg; [
+    pkgconfig autoreconfHook intltool
+    glib gobjectIntrospection gdk_pixbuf gtk3 gnome_common
+    xkeyboard_config libxkbfile libX11 libXrandr libXext
+  ];
+
+  meta = {
+    homepage = "http://cinnamon.linuxmint.com";
+    description = "Library and data for various Cinnamon modules";
+
+    longDescription = ''
+       The libcinnamon-desktop library provides API shared by several applications
+       on the desktop, but that cannot live in the platform for various
+       reasons. There is no API or ABI guarantee, although we are doing our
+       best to provide stability. Documentation for the API is available with
+       gtk-doc.
+    '';
+
+    platforms = stdenv.lib.platforms.linux;
+    maintainers = [ stdenv.lib.maintainers.roelof ];
+  };
+}
+