nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 buildDunePackage,
4 fetchFromGitHub,
5 ounit2,
6}:
7
8buildDunePackage (finalAttrs: {
9 pname = "0install-solver";
10 version = "2.18";
11
12 src = fetchFromGitHub {
13 owner = "0install";
14 repo = "0install";
15 tag = "v${finalAttrs.version}";
16 hash = "sha256-CxADWMYZBPobs65jeyMQjqu3zmm2PgtNgI/jUsYUp8I=";
17 };
18
19 doCheck = true;
20 checkInputs = [
21 ounit2
22 ];
23
24 meta = {
25 description = "Package dependency solver";
26 license = lib.licenses.lgpl21;
27 maintainers = [ lib.maintainers.stepbrobd ];
28 homepage = "https://0install.net";
29 };
30})