about summary refs log tree commit diff
path: root/pkgs/tools/misc/file
AgeCommit message (Collapse)AuthorFilesLines
2022-10-29file: fix doCheck conditional for pkgsMusl.pkgsCross.gnu64Yureka1-1/+1
2022-09-19file: disable tests on muslAlyssa Ross1-1/+2
Fixes: 4c510f32feb ("file: 5.42 -> 5.43")
2022-09-15file: 5.42 -> 5.43zowoq1-2/+2
https://mailman.astron.com/pipermail/file/2022-September/000857.html
2022-06-12file: 5.41 -> 5.42 (#177347)zowoq1-3/+3
2022-05-29pkgs/tools/misc/file: add cannot-use-fetchpatch warningAdam Joseph1-0/+5
As requested here: https://github.com/NixOS/nixpkgs/pull/168413#pullrequestreview-988550409
2022-05-25treewide: add enableParallelBuilding's to bootstrap packages so hashes stay ↵Artturin1-0/+2
the same when enableParallelBuildingByDefault is enabled verified with `nix-diff $(nix eval ".#gcc-unwrapped.drvPath") $(nix eval --expr 'with import ./. { config = { enableParallelBuildingByDefault = true; }; }; gcc-unwrapped.drvPath' --impure)`
2022-05-22treewide: enable strictDeps in bootstrap packagesArtturin1-0/+1
2021-10-23file: Add @doronbehar as maintainerDoron Behar1-1/+1
2021-10-21file: 5.40 -> 5.41Doron Behar1-11/+3
2021-08-07Merge staging-next into staginggithub-actions[bot]1-1/+2
2021-08-06file: fix detection of mimetype of xz files (#132809)marius8510001-1/+9
2021-08-06file: formatSandro Jäckel1-1/+2
2021-07-24file: 5.39 -> 5.40Kid2-21/+2
2021-01-15pkgs/tools: stdenv.lib -> libBen Siraphob1-3/+3
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
2020-06-28file: backport patch to fix a 5.39 regressionPierre Bourdon2-0/+19
This bug is causing diffoscope to fail to build with file 5.39.
2020-06-19file: 5.38 -> 5.39R. RyanTM1-2/+2
2020-04-10treewide: Per RFC45, remove all unquoted URLsMichael Reilly1-1/+1
2019-12-31file: 5.37 -> 5.38zowoq1-11/+3
2019-12-30file: *Flags are listsRobin Gloster1-2/+1
2019-10-26file: add patch for CVE-2019-18218Robert Scott1-1/+9
upstream patch https://github.com/file/file/commit/46a8443f76cec4b41ec736eca396984c74664f84.patch doesn't apply directly, debian have a version which has been adapted for 5.37.
2019-08-15treewide: name -> pname (easy cases) (#66585)volth1-3/+3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
2019-05-18file: 5.36 -> 5.37Will Dietz1-2/+2
https://github.com/file/file/blob/FILE5_37/ChangeLog
2019-02-27Revert "Merge #56170: Revert "file: 5.35 -> 5.36" (staging)"Will Dietz1-2/+2
Try this again, seems to work now. Motivated by new version possibly fixing security issues described here: https://github.com/NixOS/nixpkgs/issues/56360 This reverts commit 7d47102bbccb28cb3417dc949ad9df24e9d59686, reversing changes made to 2ed8187107c8efa3cf77311ef58cf3783e3dd749.
2019-02-21Revert "file: 5.35 -> 5.36"Will Dietz1-2/+2
2019-02-21file: 5.35 -> 5.36Will Dietz1-2/+2
https://mailman.astron.com/pipermail/file/2019-February/000073.html
2018-10-20file: 5.34 -> 5.35Vladyslav Mykhailichenko1-3/+3
2018-08-01file: 5.33 -> 5.34Uli Baum1-2/+2
fixes CVE-2018-10360
2018-07-21file: build on windowsMatthew Bauer1-2/+5
2018-04-17file: 5.32 -> 5.33R. RyanTM1-2/+2
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/file/versions. These checks were done: - built on NixOS - ran ‘/nix/store/n5afz3w8g0mj9pf5qcndb3kdz4jbljca-file-5.33/bin/file --help’ got 0 exit code - ran ‘/nix/store/n5afz3w8g0mj9pf5qcndb3kdz4jbljca-file-5.33/bin/file help’ got 0 exit code - found 5.33 with grep in /nix/store/n5afz3w8g0mj9pf5qcndb3kdz4jbljca-file-5.33 - directory tree listing: https://gist.github.com/b6f0a44bc22e88f13fe5dbc4f56d9296
2018-01-24file: fix for crossWill Dietz1-1/+2
For whatever reason "selfNativeBuildInput = true" doesn't seeem to do the trick here? (reasons may include "it's not intended to solve this problem" ;))
2017-09-05file: 5.31 -> 5.32 for CVE-2017-1000249Franz Pletz1-2/+2
2017-08-01pkgs: refactor needless quoting of homepage meta attribute (#27809)Silvan Mosberger1-1/+1
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
2017-06-11file: 5.30 -> 5.31Tuomas Tynkkynen1-2/+2
2017-03-17file: 5.28 -> 5.30Renaud1-7/+12
2016-06-20file: 5.25 -> 5.28Gabriel Ebner1-2/+2
2015-09-22file: 5.24 -> 5.25William A. Kennington III1-2/+2
2015-07-17file: Fix hashWilliam A. Kennington III1-1/+1
2015-07-17file: 5.23 -> 5.24William A. Kennington III1-2/+2
2015-07-13Merge branch 'master.upstream' into staging.upstreamWilliam A. Kennington III1-11/+0
2015-07-13pythonPackages.magic: Fix loading libmagic.soTuomas Tynkkynen1-11/+0
Even with the previous `python.patch` file around, libmagic.so isn't found. Instead patch it to use an absolute path, using a similar approach that is used by the `python_magic` package (which is another libmagic python wrapper library as well).
2015-06-26Merge branch 'master.upstream' into staging.upstreamWilliam A. Kennington III1-1/+4
2015-06-25file: add another mirror (macports, fixes #8500)Vladimír Čunát1-1/+4
2015-06-18file: 5.22 -> 5.23William A. Kennington III1-2/+2
2015-03-26file: 5.17 -> 5.22William A. Kennington III1-2/+2
2015-02-04Platforms for file derivation to include darwinJoseph Abrahamson1-1/+1
2014-08-09file: fails to build on darwinLuca Bruno1-0/+1
2014-03-25file: update to fix CVE-2014-2270, CVE-2013-7345Vladimír Čunát1-2/+2
2013-06-30file: minor update 5.12 -> 5.14Vladimír Čunát1-2/+2
2013-02-18file: bump from 5.11 to 5.12Bjørn Forsman1-4/+4