summary refs log tree commit diff
path: root/pkgs/os-specific/linux/trace-cmd
Commit message (Collapse)AuthorAge
* trace-cmd: 2.9-dev -> 2.9.1, kernelshark: 1.1.0 -> 1.2Michal Sojka2021-03-22
| | | | | | | | | | Besides updating the version, this commit decouples trace-cmd and kernelshark source revisions. These two programs are developed in the same repository but are released independently. Nixpkgs built the previous versions of these programs from the same source commit, which meant that at least one of the programs were not built from the officially released version. Now we use the release tags of the corresponding programs.
* treewide: remove stdenv where not neededPavol Rusnak2021-01-25
|
* treewide: with stdenv.lib; in meta -> with lib;Profpatsch2021-01-11
| | | | | | | | | | | | | | | | | | | 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
* tree-wide: unify Bash completions outputs (#103421)Jonas Chevalier2020-11-12
| | | Use $out/share/bash-completion/completions to store the Bash completions
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-10
|
* treewide: fix redirected urlsPatrick Hilhorst2020-01-22
| | | | | | | | | | | | | | | | | | | According to https://repology.org/repository/nix_unstable/problems, we have a lot of packages that have http links that redirect to https as their homepage. This commit updates all these packages to use the https links as their homepage. The following script was used to make these updates: ``` curl https://repology.org/api/v1/repository/nix_unstable/problems \ | jq '.[] | .problem' -r \ | rg 'Homepage link "(.+)" is a permanent redirect to "(.+)" and should be updated' --replace 's@$1@$2@' \ | sort | uniq > script.sed find -name '*.nix' | xargs -P4 -- sed -f script.sed -i ```
* Treewide: fix URL permanent redirectsc0bw3b2019-11-16
| | | | | Permanent redirects on homepages and/or source URLs as reported by Repology
* tracecmd: 2.8.3 -> 2.9-dev & kernelshark: 0.9.8 -> 1.1.0Bas van Dijk2019-10-31
|
* treewide: remove redundant recvolth2019-08-28
|
* treewide: name -> pname (easy cases) (#66585)volth2019-08-15
| | | | | | | | | treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
* trace-cmd/kernelshark: downgrade to the trace-cmd-stable-v2.8 branchBas van Dijk2019-07-27
|
* kernelshark: 0.9.8-f97e28a -> 1.0.0Bas van Dijk2019-07-27
|
* kernelshark: remove doxygen and graphviz because they aren't usedBas van Dijk2019-07-25
|
* kernelshark: install documentationBas van Dijk2019-07-25
|
* trace-cmd: 2.8-0c957d2 -> 2.9-dev-1517dc3Bas van Dijk2019-07-25
|
* trace-cmd: 2.8-c8d9e1a -> 2.8-0c957d2Bas van Dijk2019-07-25
|
* kernelshark: init at 0.9.8-c8d9e1aBas van Dijk2019-07-25
|
* trace-cmd: 2.6 -> 2.8-c8d9e1aBas van Dijk2019-07-25
|
* treewide: use dontConfigureworldofpeace2019-07-01
|
* Captialize meta.description of all packagesBjørn Forsman2016-06-20
| | | | | | | | | | | | | | | | In line with the Nixpkgs manual. A mechanical change, done with this command: find pkgs -name "*.nix" | \ while read f; do \ sed -e 's/description\s*=\s*"\([a-z]\)/description = "\u\1/' -i "$f"; \ done I manually skipped some: * Descriptions starting with an abbreviation, a user name or package name * Frequently generated expressions (haskell-packages.nix)
* Fix lots of fetchgit hashes (fallout from #15469)Tuomas Tynkkynen2016-06-03
|
* nixpkgs: trace-cmd 2.5.3 -> 2.6Austin Seipp2015-08-31
| | | | Signed-off-by: Austin Seipp <aseipp@pobox.com>
* trace-cmd: Fix build by adding docbook_xsl dependencyTuomas Tynkkynen2015-04-23
| | | | | | | | | | | | Gets rid of this build error: make -C /tmp/nix-build-trace-cmd-2.5.3.drv-0/trace-cmd/Documentation all ASCIIDOC trace-cmd-hist.1.xsl ********************************* ** No docbook.xsl is installed ** ** Can't make man pages ** ********************************* Makefile:59: recipe for target '/tmp/nix-build-trace-cmd-2.5.3.drv-0/trace-cmd/Documentation/trace-cmd-hist.1' failed
* nixpkgs: add trace-cmd 2.5.3Austin Seipp2015-04-18
Signed-off-by: Austin Seipp <aseipp@pobox.com>