summary refs log tree commit diff
path: root/pkgs/applications/audio/ladspa-plugins/default.nix
Commit message (Collapse)AuthorAge
* ladspa-plugins: switch to fetchFromGitHubFelix Buehler2021-11-02
|
* treewide: pkgs.pkgconfig -> pkgs.pkg-config, move pkgconfig to alias.nixJonathan Ringer2021-01-19
| | | | | | | | | | | | | 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.
* 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
* treewide: Per RFC45, remove all unquoted URLsMichael Reilly2020-04-10
|
* treewide: name -> pname (easy cases) (#66585)volth2019-08-15
| | | | | | | | | treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
* misc pkgs: Basic sed to get fix `pkgconfig` and `autoreconfHook` `buildInputs`John Ericson2017-09-21
| | | | Only acts on one-line dependency lists.
* ladspaPlugins: 0.4.15 -> 0.4.17Bart Brouns2016-11-02
|
* * "ensureDir" -> "mkdir -p". "ensureDir" is a rather pointlessEelco Dolstra2012-01-18
| | | | | | function, so obsolete it. svn path=/nixpkgs/branches/stdenv-updates/; revision=31644
* Be more verboseYury G. Kudryashov2010-12-06
| | | | svn path=/nixpkgs/trunk/; revision=24997
* * More cleanup.Eelco Dolstra2010-07-28
| | | | svn path=/nixpkgs/trunk/; revision=22798
* FullDepEntry -> fullDepEntry, PackEntry -> packEntryMarc Weber2009-05-19
| | | | svn path=/nixpkgs/trunk/; revision=15662
* * Cleaned up a lot of description fields that contained newlines.Eelco Dolstra2009-03-03
| | | | | | | | | | | | | | | | | Some of these should be longDescriptions, but most others just shouldn't contain newlines. E.g. write description = "Bla"; and not description = '' Bla ''; This pollutes "nix-env -qa --description" output. svn path=/nixpkgs/trunk/; revision=14310
* meta.function -> passthru.function, not killing other contents of passthruMichael Raskin2008-11-04
| | | | svn path=/nixpkgs/trunk/; revision=13190
* Changed builderDefs to use composedArgsAndFun, reduced number of nulls, made ↵Michael Raskin2008-08-19
| | | | | | overrides in builderDefsPackage to work in an intuitive manner. svn path=/nixpkgs/trunk/; revision=12655
* Added src to meta for builderDefs-based packages.Michael Raskin2008-03-02
| | | | svn path=/nixpkgs/trunk/; revision=10913
* Fixed ladspa-plugins typoMichael Raskin2008-01-18
| | | | svn path=/nixpkgs/trunk/; revision=10215
* Some review of builder-defs and dependent files. No rebuild needed. Now it ↵Michael Raskin2008-01-18
| | | | | | should be possible to override elements in builderDefs svn path=/nixpkgs/trunk/; revision=10214
* Beta-version of builderDefs fixes.Michael Raskin2007-11-12
| | | | svn path=/nixpkgs/trunk/; revision=9657
* Fixed log nesting; added Qi.Michael Raskin2007-11-08
| | | | svn path=/nixpkgs/trunk/; revision=9601
* Added a new setup proposal, builder is no more derived from shell script ↵Michael Raskin2007-10-29
(where edit=glibc rebuild), but is composed from a nix attribute set with strings and dependencies - so if you add a function, old expressions ignore it; collateral damage are packages in this style: Fastest Fourier Transform in the West, Audacity sound editor, Falling Sand game. Also added string equality that ignores dependencies to lib. Note that hasSuffixHack is now the more predictable version, but hasSuffix is left to remind us to fix the bug. svn path=/nixpkgs/trunk/; revision=9549