add default.nix

This commit is contained in:
Martin Wurm 2023-07-20 02:43:08 +02:00
parent 0e36f1ec83
commit 991250089a

17
default.nix Normal file
View file

@ -0,0 +1,17 @@
{pkgs ? import <nixpkgs> {}}:
with pkgs;
rustPlatform.buildRustPackage {
pname = "wearone-xmltv";
version = "0.1.0";
src = ./.;
cargoLock = {
lockFile = ./Cargo.lock;
};
meta = with lib; {
description = "An XMLTV provider for WeAreOne.FM internet radio stations.";
homepage = "https://codeberg.org/mart-w/weareone-xmltv";
};
}