mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
6a84883df0
Currently http://softwarebakery.com/maato is down. The alternative is also based on http, not https. It seems nicer to use github. In order to use GitHub as the source, autogen.sh needs to be executed.
37 lines
726 B
Nix
37 lines
726 B
Nix
{ fetchFromGitHub, lib, stdenv
|
|
, autoreconfHook, intltool, pkg-config
|
|
, gtk3, alsa-lib
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "volumeicon";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Maato";
|
|
repo = "volumeicon";
|
|
rev = version;
|
|
hash = "sha256-zYKC7rOoLf08rV4B43TrGNBcXfSBFxWZCe9bQD9JzaA";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
intltool
|
|
pkg-config
|
|
];
|
|
|
|
buildInputs = [
|
|
gtk3
|
|
alsa-lib
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A lightweight volume control that sits in your systray";
|
|
homepage = "http://nullwise.com/volumeicon.html";
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ bobvanderlinden ];
|
|
license = licenses.gpl3;
|
|
};
|
|
}
|
|
|