about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/paxctl
AgeCommit message (Collapse)AuthorFilesLines
2024-03-19treewide: add meta.mainProgram to packages with a single binarystuebinm1-0/+1
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
2021-01-11treewide: with stdenv.lib; in meta -> with lib;Profpatsch1-2/+2
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-2/+2
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2018-09-26paxctl: Fix cross and Darwin buildsJohn Ericson1-3/+7
2018-06-28treewide: http -> https sources (#42676)Silvan Mosberger1-1/+1
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
2017-09-14treewide: Do not limit hardenging because gcc 4.9 in bootstrapJohn Ericson1-3/+0
Bootstrap tools has since been bumped
2016-03-05Use general hardening flag toggle listsFranz Pletz1-1/+1
The following parameters are now available: * hardeningDisable To disable specific hardening flags * hardeningEnable To enable specific hardening flags Only the cc-wrapper supports this right now, but these may be reused by other wrappers, builders or setup hooks. cc-wrapper supports the following flags: * fortify * stackprotector * pie (disabled by default) * pic * strictoverflow * format * relro * bindnow
2016-02-22bootstrap env: disable stackprotector hardening until gcc >=4.9Robin Gloster1-0/+3
2015-10-05gradm, paxctl, pax-utils: unmaintainRicardo M. Correia1-1/+1
2014-09-13Merge recent master into stagingVladimír Čunát1-2/+2
Hydra nixpkgs: ?compare=1151601
2014-08-09stdenv: Move paxmark function to paxctl's setup hookEelco Dolstra2-0/+10
2014-05-06paxctl: Update from 0.7 -> 0.8Ricardo M. Correia1-3/+3
2014-02-28paxctl: Use http instead of httpsRicardo M. Correia1-1/+1
This is needed since paxctl is going to be added to stdenv but early stdenv curl does not support https.
2014-02-22gradm, pax-utils, paxctl: Add myself as a maintainerRicardo M. Correia1-4/+4
2014-02-22paxctl: Fix URLRicardo M. Correia1-1/+1
2014-02-21grsecurity: add paxctl-0.7Austin Seipp1-0/+28
Signed-off-by: Austin Seipp <aseipp@pobox.com>