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