mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
mate-icon-theme-faenza: init at 1.14.1
This commit is contained in:
parent
5c221d0b00
commit
f5dff2cd14
@ -1,4 +1,5 @@
|
||||
{ callPackage, pkgs }:
|
||||
rec {
|
||||
mate-common = callPackage ./mate-common { };
|
||||
mate-icon-theme-faenza = callPackage ./mate-icon-theme-faenza { };
|
||||
}
|
||||
|
25
pkgs/desktops/mate/mate-icon-theme-faenza/default.nix
Normal file
25
pkgs/desktops/mate/mate-icon-theme-faenza/default.nix
Normal file
@ -0,0 +1,25 @@
|
||||
{ stdenv, fetchurl, autoreconfHook, mate, hicolor_icon_theme }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "mate-icon-theme-faenza-${version}";
|
||||
version = "${major-ver}.${minor-ver}";
|
||||
major-ver = "1.14";
|
||||
minor-ver = "0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://pub.mate-desktop.org/releases/${major-ver}/${name}.tar.xz";
|
||||
sha256 = "115rbw4rbk8jqbjpbh5bfqjzsbwj5723r6cw96b1xrq1dv4gy4nr";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook mate.mate-common ];
|
||||
|
||||
buildInputs = [ hicolor_icon_theme ];
|
||||
|
||||
meta = {
|
||||
description = "Faenza icon theme from MATE";
|
||||
homepage = "http://mate-desktop.org";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
platforms = stdenv.lib.platforms.unix;
|
||||
maintainers = [ stdenv.lib.maintainers.romildo ];
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user