mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 04:31:52 +00:00
parent
1e0865ce62
commit
81460560c3
|
@ -49,6 +49,7 @@
|
|||
rickynils = "Rickard Nilsson <rickynils@gmail.com>";
|
||||
rob = "Rob Vermaas <rob.vermaas@gmail.com>";
|
||||
roconnor = "Russell O'Connor <roconnor@theorem.ca>";
|
||||
roelof = "Roelof Wobben <rwobben@hotmail.com>";
|
||||
sander = "Sander van der Burg <s.vanderburg@tudelft.nl>";
|
||||
shlevy = "Shea Levy <shea@shealevy.com>";
|
||||
simons = "Peter Simons <simons@cryp.to>";
|
||||
|
|
41
pkgs/desktops/cinnamon/cinnamon-desktop.nix
Normal file
41
pkgs/desktops/cinnamon/cinnamon-desktop.nix
Normal file
|
@ -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 ];
|
||||
};
|
||||
}
|
||||
|
|
@ -9526,6 +9526,10 @@ let
|
|||
|
||||
cinnamon = recurseIntoAttrs {
|
||||
cjs = callPackage ../desktops/cinnamon/cjs.nix { };
|
||||
|
||||
cinnamon-desktop = callPackage ../desktops/cinnamon/cinnamon-desktop.nix {
|
||||
inherit (gnome3) gnome_common;
|
||||
};
|
||||
};
|
||||
|
||||
enlightenment = callPackage ../desktops/enlightenment { };
|
||||
|
|
Loading…
Reference in a new issue