summary refs log tree commit diff
path: root/pkgs/applications/audio/pifi/default.nix
blob: 856807608d7d7213bcb6e1a196faf5a643baa2a8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ lib, bundlerEnv, ruby }:

bundlerEnv rec {
  pname = "pifi";

  version = (import ./gemset.nix).pifi.version;
  inherit ruby;
  # expects Gemfile, Gemfile.lock and gemset.nix in the same directory
  gemdir = ./.;

  meta = with lib; {
    description = "MPD web client to listen to radio, written in React and Sinatra";
    homepage = "https://github.com/rccavalcanti/pifi-radio";
    license = with licenses; gpl3Only;
    maintainers = with maintainers; [ kmein ];
    platforms = platforms.unix;
  };
}