tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
bmaptool: no with lib; in meta
Doron Behar
6 months ago
c1d71b2d
9316ea2e
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
bm
bmaptool
package.nix
+4
-4
pkgs/by-name/bm/bmaptool/package.nix
···
25
# tests fail only on hydra.
26
doCheck = false;
27
28
-
meta = with lib; {
29
description = "BMAP Tools";
30
homepage = "https://github.com/yoctoproject/bmaptool";
31
-
license = licenses.gpl2Only;
32
-
maintainers = [ maintainers.dezgeg ];
33
-
platforms = platforms.linux;
34
mainProgram = "bmaptool";
35
};
36
}
···
25
# tests fail only on hydra.
26
doCheck = false;
27
28
+
meta = {
29
description = "BMAP Tools";
30
homepage = "https://github.com/yoctoproject/bmaptool";
31
+
license = lib.licenses.gpl2Only;
32
+
maintainers = with lib.maintainers; [ dezgeg ];
33
+
platforms = lib.platforms.linux;
34
mainProgram = "bmaptool";
35
};
36
}