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
31 lines
591 B
Nix
31 lines
591 B
Nix
{
|
|
lib,
|
|
buildDunePackage,
|
|
reason,
|
|
fp,
|
|
src,
|
|
}:
|
|
|
|
buildDunePackage {
|
|
inherit src;
|
|
|
|
pname = "dir";
|
|
version = "0.0.1-unstable-2024-05-07";
|
|
|
|
nativeBuildInputs = [
|
|
reason
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
fp
|
|
];
|
|
|
|
meta = {
|
|
description = "Library that provides a consistent API for common system, user and application directories consistently on all platforms";
|
|
homepage = "https://github.com/reasonml/reason-native";
|
|
downloadPage = "https://github.com/reasonml/reason-native/tree/master/src/dir";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ ];
|
|
};
|
|
}
|