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
36 lines
1.3 KiB
Nix
36 lines
1.3 KiB
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkgconfig, curl, libnotify, gdk-pixbuf }:
|
|
|
|
stdenv.mkDerivation {
|
|
version = "2020-07-23";
|
|
pname = "cmusfm-unstable";
|
|
src = fetchFromGitHub {
|
|
owner = "Arkq";
|
|
repo = "cmusfm";
|
|
rev = "73df3e64d8aa3b5053b639615b8f81d512420e52";
|
|
sha256 = "1p9i65v8hda9bsps4hm9m2b7aw9ivk4ncllg8svyp455gn5v8xx6";
|
|
};
|
|
# building
|
|
configureFlags = [ "--enable-libnotify" ];
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
buildInputs = [ curl libnotify gdk-pixbuf ];
|
|
|
|
meta = with lib; {
|
|
description = "Last.fm and Libre.fm standalone scrobbler for the cmus music player";
|
|
longDescription = ''
|
|
Features:
|
|
+ Listening now notification support
|
|
+ Off-line played track cache for later submission
|
|
+ POSIX ERE-based file name parser
|
|
+ Desktop notification support (optionally)
|
|
+ Customizable scrobbling service
|
|
+ Small memory footprint
|
|
Configuration:
|
|
+ run `cmusfm init` to generate configuration file under ~/.config/cmus/cmusfm.conf
|
|
+ Inside cmus run `:set status_display_program=cmusfm` to set up cmusfm
|
|
'';
|
|
homepage = "https://github.com/Arkq/cmusfm/";
|
|
maintainers = with stdenv.lib.maintainers; [ CharlesHD ];
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
};
|
|
}
|