Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
35 lines
766 B
Nix
35 lines
766 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
autoreconfHook,
|
|
gtk-engine-murrine,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "Blackbird";
|
|
version = "2017-12-13";
|
|
|
|
src = fetchFromGitHub {
|
|
repo = "Blackbird";
|
|
owner = "shimmerproject";
|
|
rev = "a1c5674c0ec38b4cc8ba41d2c0e6187987ae7eb4";
|
|
sha256 = "0xskcw36ci2ykra5gir5pkrawh2qkcv18p4fp2kxivssbd20d4jw";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
propagatedUserEnvPkgs = [ gtk-engine-murrine ];
|
|
|
|
meta = {
|
|
description = "Dark Desktop Suite for Gtk, Xfce and Metacity";
|
|
homepage = "https://github.com/shimmerproject/Blackbird";
|
|
license = with lib.licenses; [
|
|
gpl2Plus
|
|
cc-by-nc-sa-30
|
|
];
|
|
platforms = lib.platforms.linux;
|
|
maintainers = [ lib.maintainers.romildo ];
|
|
};
|
|
}
|