mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-06 04:53:27 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
50 lines
1.3 KiB
Nix
50 lines
1.3 KiB
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
, makeWrapper
|
|
, mpv
|
|
, pulseaudio
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication rec {
|
|
pname = "cplay-ng";
|
|
version = "5.2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xi";
|
|
repo = "cplay-ng";
|
|
rev = version;
|
|
hash = "sha256-M9WpB59AWSaGMnGrO37Fc+7O6pVBc2BDAv/BGlPmo8E=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
];
|
|
|
|
postInstall = ''
|
|
wrapProgram $out/bin/cplay-ng \
|
|
--prefix PATH : ${lib.makeBinPath [ mpv pulseaudio ]}
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/xi/cplay-ng";
|
|
description = "Simple curses audio player";
|
|
mainProgram = "cplay-ng";
|
|
longDescription = ''
|
|
cplay is a minimalist music player with a textual user interface written
|
|
in Python. It aims to provide a power-user-friendly interface with simple
|
|
filelist and playlist control.
|
|
|
|
Instead of building an elaborate database of your music library, cplay
|
|
allows you to quickly browse the filesystem and enqueue files,
|
|
directories, and playlists.
|
|
|
|
The original cplay was started by Ulf Betlehem in 1998 and is no longer
|
|
maintained. This is a rewrite that aims to stay true to the original
|
|
design while evolving with a shifting environment.
|
|
'';
|
|
license = licenses.gpl2Plus;
|
|
maintainers = with maintainers; [ fgaz ];
|
|
};
|
|
}
|