5d26766cbf
Added homepage where missing, where the sources are pulled from: - https://github.com - https://git.sr.ht - https://gitlab.com - https://invent.kde.org - https://codeberg.org - https://gitlab.gnome.org - https://gitlab.freedesktop.org - https://git.FreeBSD.org - https://salsa.debian.org - https://git.tvdr.de - https://git.suckless.org
26 lines
505 B
Nix
26 lines
505 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
reason,
|
|
src,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
inherit src;
|
|
|
|
pname = "fp";
|
|
version = "0.0.1-unstable-2024-05-07";
|
|
|
|
nativeBuildInputs = [
|
|
reason
|
|
];
|
|
|
|
meta = {
|
|
description = "Library for creating and operating on file paths consistently on multiple platforms";
|
|
homepage = "https://github.com/reasonml/reason-native";
|
|
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/fp";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|