tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
dejagnu: Add metadata
William A. Kennington III
11 years ago
f537943f
6a5bf4f0
+4
-4
1 changed file
expand all
collapse all
unified
split
pkgs
development
tools
misc
dejagnu
default.nix
+4
-4
pkgs/development/tools/misc/dejagnu/default.nix
reviewed
···
32
32
--prefix PATH ":" "${expect}/bin"
33
33
'';
34
34
35
35
-
meta = {
35
35
+
meta = with stdenv.lib; {
36
36
description = "Framework for testing other programs";
37
37
38
38
longDescription = ''
···
47
47
'';
48
48
49
49
homepage = http://www.gnu.org/software/dejagnu/;
50
50
-
license = stdenv.lib.licenses.gpl2Plus;
50
50
+
license = licenses.gpl2Plus;
51
51
52
52
-
platforms = stdenv.lib.platforms.linux;
53
53
-
maintainers = [ ];
52
52
+
platforms = platforms.linux;
53
53
+
maintainers = with maintainers; [ wkennington ];
54
54
};
55
55
}