Skip to content

Commit

Permalink
fix: add default.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
yorodm committed Jun 6, 2022
1 parent fe4c8c9 commit f57da5c
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
{
pkgs ? import <nixpkgs> {}
, lib ? pkgs.lib
}:
let
yorodm = {
name = "Yoandy Rodriguez" ;
email = "no_spam@nospam.org";
github = "yorodm";
};
in
pkgs.buildGoPackage rec {
name = "go-feed-parser-${version}";
version = "v.0.0.1";
goPackagePath = "github.com/easypodcasts/go-feed-parser";

src = lib.cleanSource ./.;

meta = {
description = "Simple feed parser for Easypodcasts";
homepage = https://github.com/nix-community/queued-build-hook;
maintainers = [ yorodm ];
};

}

0 comments on commit f57da5c

Please sign in to comment.