summary refs log tree commit diff
path: root/pkgs/os-specific/linux/trace-cmd
Commit message (Collapse)AuthorAge
* 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>