4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
27 lines
784 B
Nix
27 lines
784 B
Nix
{ lib, stdenv, fetchFromGitHub, pkgconfig, deadbeef, gtkmm3, libxmlxx3 }:
|
||
|
||
stdenv.mkDerivation {
|
||
pname = "deadbeef-lyricbar-plugin";
|
||
version = "unstable-2019-01-29";
|
||
|
||
src = fetchFromGitHub {
|
||
owner = "C0rn3j";
|
||
repo = "deadbeef-lyricbar";
|
||
rev = "8f99b92ef827c451c43fc7dff38ae4f15c355e8e";
|
||
sha256 = "108hx5530f4xm8p9m2bk79nq7jkhcj39ad3vmxb2y6h6l2zv5kwl";
|
||
};
|
||
|
||
nativeBuildInputs = [ pkgconfig ];
|
||
buildInputs = [ deadbeef gtkmm3 libxmlxx3 ];
|
||
|
||
buildFlags = [ "gtk3" ];
|
||
|
||
meta = with lib; {
|
||
description = "Plugin for DeaDBeeF audio player that fetches and shows the song’s lyrics";
|
||
homepage = "https://github.com/C0rn3j/deadbeef-lyricbar";
|
||
license = licenses.mit;
|
||
maintainers = [ maintainers.jtojnar ];
|
||
platforms = platforms.linux;
|
||
};
|
||
}
|