mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 01:43:15 +00:00
54 lines
2.0 KiB
Nix
54 lines
2.0 KiB
Nix
{ lib, buildDunePackage, fetchFromGitLab
|
|
, ocamlgraph, parmap, re, stdlib-shims
|
|
, base64, extlib, cudf
|
|
, ocaml, ounit
|
|
}:
|
|
|
|
buildDunePackage rec {
|
|
pname = "dose3";
|
|
version = "7.0.0";
|
|
|
|
src = fetchFromGitLab {
|
|
owner = "irill";
|
|
repo = "dose3";
|
|
rev = version;
|
|
sha256 = "sha256-K0fYSAWV48Rers/foDrEIqieyJ0PvpXkuYrFrZGBkkE=";
|
|
};
|
|
|
|
minimalOCamlVersion = "4.07";
|
|
|
|
buildInputs = [
|
|
parmap
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
base64
|
|
cudf
|
|
extlib
|
|
ocamlgraph
|
|
re
|
|
stdlib-shims
|
|
];
|
|
|
|
checkInputs = [
|
|
ounit
|
|
];
|
|
doCheck = lib.versionAtLeast ocaml.version "4.08";
|
|
|
|
meta = with lib; {
|
|
description = "Dose library (part of Mancoosi tools)";
|
|
downloadPage = "https://gitlab.com/irill/dose3/";
|
|
homepage = "https://www.mancoosi.org/software/";
|
|
license = licenses.lgpl3Plus;
|
|
longDescription = ''
|
|
The dose suite provides libraries for handling package meta-data, and various tools for analyzing package relationships in a large package repository.
|
|
* dose-builddebcheck checks, given a collection of source package stanzas and a collection of binary package stanzas of Debian packages, whether the build-dependencies of each source package can be satisfied by the binary packages.
|
|
* dose-distcheck checks for every package of a distribution whether it is possible to satisfy its dependencies and conflicts within this distribution.
|
|
* ceve, a general metadata parser supporting different input formats (Debian, rpm, and others) and different output formats.
|
|
* dose-outdated, a Debian-specific tool for finding packages that are not installable with respect to a package repository, and that can only be made installable again by fixing the package itself.
|
|
* dose-challenged, a Debian-specific tool for checking which packages will certainly become uninstallable when some existing package is upgraded to a newer version.
|
|
* dose-deb-coinstall, a Debian-specific tool for checking whether a set of packages can be installed all together.
|
|
'';
|
|
};
|
|
}
|