mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2025-01-06 13:16:40 +03:00
greybird: 3.22.10 -> 3.22.11
- update to version 3.22.11 - build system ported to meson
This commit is contained in:
parent
87021d3ca1
commit
7d01524ba8
@ -1,22 +1,21 @@
|
|||||||
{ stdenv, fetchFromGitHub, autoreconfHook, which, sassc, glib, libxml2, gdk-pixbuf, librsvg, gtk-engine-murrine }:
|
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, sassc, gdk-pixbuf, librsvg, gtk-engine-murrine }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "greybird";
|
pname = "greybird";
|
||||||
version = "3.22.10";
|
version = "3.22.11";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "shimmerproject";
|
owner = "shimmerproject";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "1g1mnzxqwlbymq8npd2j294f8dzf9fw9nicd4pajmscg2vk71da9";
|
sha256 = "00x7dcjldph9k0nmvc8hyh3k4lhbmwk791rywd89ry6jivrx40pc";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
autoreconfHook
|
meson
|
||||||
which
|
ninja
|
||||||
|
pkgconfig
|
||||||
sassc
|
sassc
|
||||||
glib
|
|
||||||
libxml2
|
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
@ -30,8 +29,8 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Grey and blue theme from the Shimmer Project for GTK-based environments";
|
description = "Grey and blue theme from the Shimmer Project for GTK-based environments";
|
||||||
homepage = https://github.com/shimmerproject/Greybird;
|
homepage = "https://github.com/shimmerproject/Greybird";
|
||||||
license = with licenses; [ gpl2Plus ]; # or alternatively: cc-by-nc-sa-30
|
license = [ licenses.gpl2Plus ]; # or alternatively: cc-by-nc-sa-30 or later
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
maintainers = [ maintainers.romildo ];
|
maintainers = [ maintainers.romildo ];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user