pifi: init at 0.4.11

This commit is contained in:
Kierán Meinhardt
2021-01-25 22:45:18 +01:00
parent ab757a382c
commit b8a347db93
5 changed files with 198 additions and 0 deletions
+18
View File
@@ -0,0 +1,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;
};
}