tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
Merge #12783: add some meta.platforms attributes
Vladimír Čunát
10 years ago
7fa9a1ab
16799ffd
+4
-2
4 changed files
expand all
collapse all
unified
split
pkgs
development
compilers
dtc
default.nix
libraries
acl
default.nix
attr
default.nix
tools
X11
ckbcomp
default.nix
+1
-1
pkgs/development/compilers/dtc/default.nix
···
19
homepage = https://git.kernel.org/cgit/utils/dtc/dtc.git;
20
license = licenses.gpl2; # dtc itself is GPLv2, libfdt is dual GPL/BSD
21
maintainers = [ maintainers.dezgeg ];
22
-
platforms = platforms.linux;
23
};
24
}
···
19
homepage = https://git.kernel.org/cgit/utils/dtc/dtc.git;
20
license = licenses.gpl2; # dtc itself is GPLv2, libfdt is dual GPL/BSD
21
maintainers = [ maintainers.dezgeg ];
22
+
platforms = platforms.unix;
23
};
24
}
+1
pkgs/development/libraries/acl/default.nix
···
25
meta = {
26
homepage = http://savannah.nongnu.org/projects/acl;
27
description = "Library and tools for manipulating access control lists";
0
28
};
29
}
···
25
meta = {
26
homepage = http://savannah.nongnu.org/projects/acl;
27
description = "Library and tools for manipulating access control lists";
28
+
platforms = stdenv.lib.platforms.linux;
29
};
30
}
+1
pkgs/development/libraries/attr/default.nix
···
17
meta = {
18
homepage = http://savannah.nongnu.org/projects/attr/;
19
description = "Library and tools for manipulating extended attributes";
0
20
};
21
}
···
17
meta = {
18
homepage = http://savannah.nongnu.org/projects/attr/;
19
description = "Library and tools for manipulating extended attributes";
20
+
platforms = stdenv.lib.platforms.linux;
21
};
22
}
+1
-1
pkgs/tools/X11/ckbcomp/default.nix
···
31
homepage = http://anonscm.debian.org/cgit/d-i/console-setup.git;
32
license = licenses.gpl2Plus;
33
maintainers = with stdenv.lib.maintainers; [ dezgeg ];
34
-
platforms = platforms.linux;
35
};
36
}
···
31
homepage = http://anonscm.debian.org/cgit/d-i/console-setup.git;
32
license = licenses.gpl2Plus;
33
maintainers = with stdenv.lib.maintainers; [ dezgeg ];
34
+
platforms = platforms.unix;
35
};
36
}