mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
468cb5980b
Since GNOME version is now 40, it no longer makes sense to use the old attribute name.
40 lines
588 B
Nix
40 lines
588 B
Nix
# File Roller.
|
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
# Added 2019-08-09
|
|
imports = [
|
|
(mkRenamedOptionModule
|
|
[ "services" "gnome3" "file-roller" "enable" ]
|
|
[ "programs" "file-roller" "enable" ])
|
|
];
|
|
|
|
###### interface
|
|
|
|
options = {
|
|
|
|
programs.file-roller = {
|
|
|
|
enable = mkEnableOption "File Roller, an archive manager for GNOME";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
###### implementation
|
|
|
|
config = mkIf config.programs.file-roller.enable {
|
|
|
|
environment.systemPackages = [ pkgs.gnome.file-roller ];
|
|
|
|
services.dbus.packages = [ pkgs.gnome.file-roller ];
|
|
|
|
};
|
|
|
|
}
|