summary refs log tree commit diff
path: root/pkgs/build-support/templaterpm
Commit message (Collapse)AuthorAge
* treewide: makeWrapper buildInputs to nativeBuildInputsBen Siraphob2021-02-19
|
* treewide: stdenv.lib -> libBen Siraphob2021-01-27
|
* treewide: stdenv.lib -> libPavol Rusnak2021-01-24
|
* 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: 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
* Compare to `None` using identity `is` operatorMichał Janiszewski2018-10-30
| | | | | | | | This is a trivial change that replaces `==` operator with `is` operator, following PEP 8 guideline: > Comparisons to singletons like None should always be done with is or is not, never the equality operators. https://legacy.python.org/dev/peps/pep-0008/#programming-recommendations
* Update: new features for nix-template-rpmThomas Strobel2015-02-06
| | | | | | | | - nix-template-rpm can now split the generated templates into a static part that goes into the nixpkgs tree a dynamic part that can be updated easily to track the rpm spec files - add lookup mechanism for package names and package paths - add mechanism to update existing nix-expression with new download files
* Add: nix-template-rpm: Script to generate templates of nix expressions from ↵Thomas Strobel2015-01-27
RPM .spec files