nixpkgs/pkgs/tools/audio/gvolicon/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

32 lines
909 B
Nix
Raw Normal View History

2022-03-08 14:29:19 +00:00
{ lib, stdenv, makeWrapper, alsa-lib, pkg-config, fetchFromGitHub, gtk3, gnome, gdk-pixbuf, librsvg, wrapGAppsHook }:
2014-03-13 15:24:15 +00:00
stdenv.mkDerivation {
2021-08-12 19:47:47 +00:00
pname = "gvolicon";
version = "unstable-2014-04-28";
2022-03-08 14:29:19 +00:00
src = fetchFromGitHub {
owner = "Unia";
repo = "gvolicon";
2016-06-17 09:45:58 +00:00
rev = "0d65a396ba11f519d5785c37fec3e9a816217a07";
2022-03-08 14:29:19 +00:00
sha256 = "sha256-lm5OfryV1/1T1RgsVDdp0Jg5rh8AND8M3ighfrznKes=";
2014-03-13 15:24:15 +00:00
};
nativeBuildInputs = [ pkg-config ];
2016-06-17 09:45:58 +00:00
buildInputs = [
makeWrapper alsa-lib gtk3 gdk-pixbuf gnome.adwaita-icon-theme
2016-06-17 09:45:58 +00:00
librsvg wrapGAppsHook
];
2017-02-21 17:52:53 +00:00
makeFlags = [ "PREFIX=$(out)" ];
2019-10-30 02:23:29 +00:00
NIX_CFLAGS_COMPILE = "-D_POSIX_C_SOURCE";
2014-03-13 15:24:15 +00:00
meta = {
2014-11-11 13:20:43 +00:00
description = "A simple and lightweight volume icon that sits in your system tray";
homepage = "https://github.com/Unia/gvolicon";
2021-01-15 09:19:50 +00:00
platforms = lib.platforms.linux;
license = lib.licenses.gpl3Plus;
maintainers = [ lib.maintainers.bennofs ];
2014-03-13 15:24:15 +00:00
};
2014-10-18 17:18:00 +00:00
}