2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerApp, bundlerUpdateScript }:
|
2016-03-19 12:42:52 +00:00
|
|
|
|
2019-05-02 22:51:11 +01:00
|
|
|
bundlerApp {
|
2016-10-03 09:33:07 +01:00
|
|
|
pname = "fpm";
|
|
|
|
gemdir = ./.;
|
2019-05-02 22:51:11 +01:00
|
|
|
exes = [ "fpm" ];
|
2016-03-19 12:42:52 +00:00
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "fpm";
|
|
|
|
|
2016-03-19 12:42:52 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Tool to build packages for multiple platforms with ease";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/jordansissel/fpm";
|
2016-03-19 12:42:52 +00:00
|
|
|
license = licenses.mit;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ manveru nicknovitski ];
|
2016-03-19 12:42:52 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|