Commit Graph

21 Commits

Author SHA1 Message Date
Pavol Rusnak
a6ce00c50c
treewide: remove stdenv where not needed 2021-01-25 18:31:47 +01:00
Jonathan Ringer
9bb3fccb5b treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nix
continuation of #109595

pkgconfig was aliased in 2018, however, it remained in
all-packages.nix due to its wide usage. This cleans
up the remaining references to pkgs.pkgsconfig and
moves the entry to aliases.nix.

python3Packages.pkgconfig remained unchanged because
it's the canonical name of the upstream package
on pypi.
2021-01-19 01:16:25 -08:00
Profpatsch
4a7f99d55d treewide: with stdenv.lib; in meta -> with lib;
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
2021-01-11 10:38:22 +01:00
Michael Reilly
84cf00f980
treewide: Per RFC45, remove all unquoted URLs 2020-04-10 17:54:53 +01:00
R. RyanTM
6701487f01 qsampler: 0.6.0 -> 0.6.1 2019-12-24 05:11:48 -08:00
Marek Mahut
89a4607ac5 qsampler: using mkDerivation 2019-11-01 09:07:08 +01:00
R. RyanTM
a3c1c9c6a4 qsampler: 0.5.6 -> 0.6.0
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/qsampler/versions
2019-10-23 14:05:02 -07:00
volth
46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00
R. RyanTM
f91d69307c qsampler: 0.5.5 -> 0.5.6
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/qsampler/versions
2019-07-16 10:25:47 -07:00
R. RyanTM
083176a6e6 qsampler: 0.5.4 -> 0.5.5
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/qsampler/versions
2019-05-02 23:14:59 +02:00
R. RyanTM
daf79c692d qsampler: 0.5.3 -> 0.5.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/qsampler/versions

(cherry picked from commit b9346620fddad6d05ceedfbe9f1bd7e89d315a20)
2019-04-07 13:46:28 +02:00
R. RyanTM
c7386145ad qsampler: 0.5.2 -> 0.5.3
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/qsampler/versions
2018-12-14 08:25:36 -08:00
R. RyanTM
599c74f5c0 qsampler: 0.5.1 -> 0.5.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/qsampler/versions.
2018-08-08 03:24:30 -07:00
R. RyanTM
6979ed8c38 qsampler: 0.5.0 -> 0.5.1 (#41526)
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/qsampler/versions.

These checks were done:

- built on NixOS
- Warning: no invocation of /nix/store/wjb056clfsdy4z4f31nnr5jsm97lkrd3-qsampler-0.5.1/bin/qsampler had a zero exit code or showed the expected version
- 0 of 1 passed binary check by having a zero exit code.
- 0 of 1 passed binary check by having the new version present in output.
- found 0.5.1 with grep in /nix/store/wjb056clfsdy4z4f31nnr5jsm97lkrd3-qsampler-0.5.1
- directory tree listing: https://gist.github.com/bb864f141bbd7bd8f3d6ced7d86fbac5
- du listing: https://gist.github.com/bdce0e9f2ef4b38440f76509b4012a26
2018-06-09 00:42:05 +02:00
Bart Brouns
4c6e4e81ae qsampler: 0.4.3 -> 0.5.0 2017-12-14 14:42:37 +01:00
Bart Brouns
9b1ba6515a qsampler: svn-2342 -> 0.4.3 2017-12-09 02:04:45 +00:00
Orivej Desh
687175c931 liblscp: svn-2319 -> 0.5.8 2017-12-09 02:04:11 +00:00
John Ericson
531e4b80c9 misc pkgs: Basic sed to get fix pkgconfig and autoreconfHook buildInputs
Only acts on one-line dependency lists.
2017-09-21 15:49:53 -04:00
Bjørn Forsman
bd01fad0ed Captialize meta.description of all packages
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)
2016-06-20 13:55:52 +02:00
Cillian de Róiste
b57ee8c331 nixpkgs-lint: add the platforms meta attr for most of my packages 2014-03-16 12:08:26 +01:00
Cillian de Roiste
6264f9cd91 Adding qsampler, the frontend for LinuxSampler
svn path=/nixpkgs/trunk/; revision=33867
2012-04-20 22:44:50 +00:00