add default.nix
This commit is contained in:
parent
0e36f1ec83
commit
991250089a
17
default.nix
Normal file
17
default.nix
Normal 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";
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue