mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
26 lines
699 B
Nix
26 lines
699 B
Nix
{ lib, stdenv, fetchFromGitHub, libnotify, pkg-config, glib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "batsignal";
|
|
version = "1.3.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "electrickite";
|
|
repo = "batsignal";
|
|
rev = version;
|
|
sha256 = "sha256-ClwI3ZbkLul+l0zzzGxNjSOUTuVzIxtwUPNLOeFT2X0=";
|
|
};
|
|
|
|
buildInputs = [ libnotify glib ];
|
|
nativeBuildInputs = [ pkg-config ];
|
|
installFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/electrickite/batsignal";
|
|
description = "Lightweight battery daemon written in C";
|
|
license = licenses.isc;
|
|
maintainers = with maintainers; [ SlothOfAnarchy ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|