lol

Merge pull request #130472 from Stunkymonkey/inherit-version3

various: cleanup of "inherit version;"

authored by

Sandro and committed by
GitHub
b4176ae9 dd35f175

+52 -157
-1
pkgs/development/compilers/clasp/default.nix
··· 118 118 CLASP_SRC_DONTTOUCH = "true"; 119 119 120 120 meta = { 121 - inherit version; 122 121 description = "A Common Lisp implementation based on LLVM with C++ integration"; 123 122 license = lib.licenses.lgpl21Plus ; 124 123 maintainers = [lib.maintainers.raskin];
-1
pkgs/development/compilers/ldc/binary.nix
··· 32 32 ''; 33 33 34 34 meta = with lib; { 35 - inherit version; 36 35 description = "The LLVM-based D Compiler"; 37 36 homepage = "https://github.com/ldc-developers/ldc"; 38 37 # from https://github.com/ldc-developers/ldc/blob/master/LICENSE
-1
pkgs/development/compilers/solc/default.nix
··· 99 99 homepage = "https://github.com/ethereum/solidity"; 100 100 license = licenses.gpl3; 101 101 maintainers = with maintainers; [ dbrock akru lionello sifmelcara ]; 102 - inherit version; 103 102 }; 104 103 }; 105 104 in
+3 -4
pkgs/development/libraries/audio/libgme/default.nix
··· 1 1 { lib, stdenv, fetchFromBitbucket, cmake, removeReferencesTo }: 2 - let 2 + 3 + stdenv.mkDerivation rec { 4 + pname = "libgme"; 3 5 version = "0.6.3"; 4 - in stdenv.mkDerivation { 5 - pname = "libgme"; 6 - inherit version; 7 6 8 7 meta = with lib; { 9 8 description = "A collection of video game music chip emulators";
+2 -4
pkgs/development/libraries/avro-c++/default.nix
··· 1 1 { lib, stdenv, fetchurl, cmake, boost, python2}: 2 2 3 - let version = "1.8.2"; in 4 - 5 - stdenv.mkDerivation { 3 + stdenv.mkDerivation rec { 6 4 pname = "avro-c++"; 7 - inherit version; 5 + version = "1.8.2"; 8 6 9 7 src = fetchurl { 10 8 url = "mirror://apache/avro/avro-${version}/cpp/avro-cpp-${version}.tar.gz";
+2 -4
pkgs/development/libraries/avro-c/default.nix
··· 1 1 { lib, stdenv, cmake, fetchurl, pkg-config, jansson, zlib }: 2 2 3 - let 4 - version = "1.10.2"; 5 - in stdenv.mkDerivation { 3 + stdenv.mkDerivation rec { 6 4 pname = "avro-c"; 7 - inherit version; 5 + version = "1.10.2"; 8 6 9 7 src = fetchurl { 10 8 url = "mirror://apache/avro/avro-${version}/c/avro-c-${version}.tar.gz";
+3 -8
pkgs/development/libraries/bearssl/default.nix
··· 1 1 { lib, stdenv, fetchurl }: 2 2 3 - let 3 + stdenv.mkDerivation rec { 4 + pname = "bearssl"; 4 5 version = "0.6"; 5 - sha256 = "057zhgy9w4y8z2996r0pq5k2k39lpvmmvz4df8db8qa9f6hvn1b7"; 6 - 7 - in 8 - stdenv.mkDerivation { 9 - pname = "bearssl"; 10 - inherit version; 11 6 12 7 src = fetchurl { 13 8 url = "https://www.bearssl.org/bearssl-${version}.tar.gz"; 14 - inherit sha256; 9 + sha256 = "057zhgy9w4y8z2996r0pq5k2k39lpvmmvz4df8db8qa9f6hvn1b7"; 15 10 }; 16 11 17 12 outputs = [ "bin" "lib" "dev" "out" ];
-1
pkgs/development/libraries/cddlib/default.nix
··· 23 23 # Requested here: https://github.com/cddlib/cddlib/issues/25 24 24 doCheck = true; 25 25 meta = with lib; { 26 - inherit version; 27 26 description = "An implementation of the Double Description Method for generating all vertices of a convex polyhedron"; 28 27 license = licenses.gpl2Plus; 29 28 maintainers = teams.sage.members;
+2 -4
pkgs/development/libraries/classads/default.nix
··· 1 1 { lib, stdenv, fetchurl, pcre }: 2 2 3 - let version = "1.0.10"; in 4 - 5 - stdenv.mkDerivation { 3 + stdenv.mkDerivation rec { 6 4 pname = "classads"; 7 - inherit version; 5 + version = "1.0.10"; 8 6 9 7 src = fetchurl { 10 8 url = "ftp://ftp.cs.wisc.edu/condor/classad/c++/classads-${version}.tar.gz";
+2 -5
pkgs/development/libraries/clfft/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, cmake, fftw, fftwFloat, boost166, opencl-clhpp, ocl-icd }: 2 2 3 - let 4 - version = "2.12.2"; 5 - in stdenv.mkDerivation { 3 + stdenv.mkDerivation rec { 6 4 pname = "clfft"; 7 - inherit version; 5 + version = "2.12.2"; 8 6 9 7 src = fetchFromGitHub { 10 8 owner = "clMathLibraries"; ··· 29 27 homepage = "http://clmathlibraries.github.io/clFFT/"; 30 28 platforms = [ "i686-linux" "x86_64-linux" ]; 31 29 maintainers = with maintainers; [ chessai ]; 32 - inherit version; 33 30 }; 34 31 }
-1
pkgs/development/libraries/eclib/default.nix
··· 43 43 ]; 44 44 doCheck = true; 45 45 meta = with lib; { 46 - inherit version; 47 46 description = "Elliptic curve tools"; 48 47 homepage = "https://github.com/JohnCremona/eclib"; 49 48 license = licenses.gpl2Plus;
-1
pkgs/development/libraries/fflas-ffpack/default.nix
··· 49 49 doCheck = true; 50 50 51 51 meta = with lib; { 52 - inherit version; 53 52 description = "Finite Field Linear Algebra Subroutines"; 54 53 license = licenses.lgpl21Plus; 55 54 maintainers = teams.sage.members;
+1 -5
pkgs/development/libraries/fox/fox-1.6.nix
··· 2 2 , libXrandr, libGLU, libGL, libXft, libXfixes, xinput 3 3 , CoreServices }: 4 4 5 - let 6 - version = "1.6.57"; 7 - in 8 - 9 5 stdenv.mkDerivation rec { 10 6 pname = "fox"; 11 - inherit version; 7 + version = "1.6.57"; 12 8 13 9 src = fetchurl { 14 10 url = "ftp://ftp.fox-toolkit.org/pub/${pname}-${version}.tar.gz";
-1
pkgs/development/libraries/freenect/default.nix
··· 20 20 21 21 meta = { 22 22 description = "Drivers and libraries for the Xbox Kinect device on Windows, Linux, and macOS"; 23 - inherit version; 24 23 homepage = "http://openkinect.org"; 25 24 license = with lib.licenses; [ gpl2 asl20 ]; 26 25 maintainers = with lib.maintainers; [ bennofs ];
-1
pkgs/development/libraries/givaro/3.7.nix
··· 9 9 nativeBuildInputs = [ autoreconfHook ]; 10 10 buildInputs = [autoconf automake libtool gmpxx]; 11 11 meta = { 12 - inherit version; 13 12 description = "A C++ library for arithmetic and algebraic computations"; 14 13 license = lib.licenses.cecill-b; 15 14 maintainers = [lib.maintainers.raskin];
-1
pkgs/development/libraries/givaro/3.nix
··· 9 9 nativeBuildInputs = [ autoreconfHook ]; 10 10 buildInputs = [autoconf automake libtool gmpxx]; 11 11 meta = { 12 - inherit version; 13 12 description = "A C++ library for arithmetic and algebraic computations"; 14 13 license = lib.licenses.cecill-b; 15 14 maintainers = [lib.maintainers.raskin];
-1
pkgs/development/libraries/givaro/default.nix
··· 36 36 doCheck = false; 37 37 38 38 meta = { 39 - inherit version; 40 39 description = "A C++ library for arithmetic and algebraic computations"; 41 40 license = lib.licenses.cecill-b; 42 41 maintainers = [lib.maintainers.raskin];
+2 -4
pkgs/development/libraries/goocanvas/2.x.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config, gettext, gtk-doc, gobject-introspection, python2, gtk3, cairo, glib }: 2 2 3 - let 4 - version = "2.0.4"; 5 - in stdenv.mkDerivation rec { 3 + stdenv.mkDerivation rec { 6 4 pname = "goocanvas"; 7 - inherit version; 5 + version = "2.0.4"; 8 6 9 7 outputs = [ "out" "dev" "devdoc" ]; 10 8
+2 -4
pkgs/development/libraries/http-parser/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub }: 2 2 3 - let 4 - version = "2.9.4"; 5 - in stdenv.mkDerivation { 3 + stdenv.mkDerivation rec { 6 4 pname = "http-parser"; 7 - inherit version; 5 + version = "2.9.4"; 8 6 9 7 src = fetchFromGitHub { 10 8 owner = "nodejs";
-1
pkgs/development/libraries/iml/default.nix
··· 19 19 "--with-cblas=-lblas" 20 20 ]; 21 21 meta = { 22 - inherit version; 23 22 description = "Algorithms for computing exact solutions to dense systems of linear equations over the integers"; 24 23 license = lib.licenses.gpl2Plus; 25 24 maintainers = [lib.maintainers.raskin];
+2 -5
pkgs/development/libraries/java/rhino/default.nix
··· 1 1 { fetchurl, lib, stdenv, unzip, ant, javac, jvm }: 2 2 3 3 let 4 - version = "1.7R2"; 5 - 6 4 xbeans = fetchurl { 7 5 url = "http://archive.apache.org/dist/xmlbeans/binaries/xmlbeans-2.2.0.zip"; 8 6 sha256 = "1pb08d9j81d0wz5wj31idz198iwhqb7mch872n08jh1354rjlqwk"; 9 7 }; 10 8 in 11 - 12 - stdenv.mkDerivation { 9 + stdenv.mkDerivation rec { 13 10 pname = "rhino"; 14 - inherit version; 11 + version = "1.7R2"; 15 12 16 13 src = fetchurl { 17 14 url = "mirror://mozilla/js/rhino1_7R2.zip";
-1
pkgs/development/libraries/jsoncpp/default.nix
··· 48 48 ]; 49 49 50 50 meta = with lib; { 51 - inherit version; 52 51 homepage = "https://github.com/open-source-parsers/jsoncpp"; 53 52 description = "A C++ library for interacting with JSON"; 54 53 maintainers = with maintainers; [ ttuegel cpages ];
-1
pkgs/development/libraries/libb64/default.nix
··· 19 19 ''; 20 20 21 21 meta = { 22 - inherit version; 23 22 description = "ANSI C routines for fast base64 encoding/decoding"; 24 23 license = lib.licenses.publicDomain; 25 24 platforms = lib.platforms.unix;
-1
pkgs/development/libraries/libewf/default.nix
··· 18 18 license = lib.licenses.lgpl3; 19 19 maintainers = [ lib.maintainers.raskin ] ; 20 20 platforms = lib.platforms.unix; 21 - inherit version; 22 21 }; 23 22 }
-1
pkgs/development/libraries/libixp-hg/default.nix
··· 22 22 description = "Portable, simple C-language 9P client and server libary"; 23 23 maintainers = with lib.maintainers; [ kovirobi ]; 24 24 license = lib.licenses.mit; 25 - inherit version; 26 25 platforms = with lib.platforms; unix; 27 26 }; 28 27 }
+2 -5
pkgs/development/libraries/libofa/default.nix
··· 1 1 { lib, stdenv, fetchurl, expat, curl, fftw }: 2 2 3 - let 3 + stdenv.mkDerivation rec { 4 + pname = "libofa"; 4 5 version = "0.9.3"; 5 6 deb_patch = "5"; 6 - in 7 - stdenv.mkDerivation rec { 8 - pname = "libofa"; 9 - inherit version; 10 7 11 8 src = fetchurl { 12 9 url = "https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/musicip-libofa/${pname}-${version}.tar.gz";
+1 -3
pkgs/development/libraries/libpar2/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config, libsigcxx }: 2 2 3 - let version = "0.4"; in 4 - 5 3 stdenv.mkDerivation rec { 6 4 pname = "libpar2"; 7 - inherit version; 5 + version = "0.4"; 8 6 9 7 src = fetchurl { 10 8 url = "https://launchpad.net/libpar2/trunk/${version}/+download/${pname}-${version}.tar.gz";
-1
pkgs/development/libraries/libre/default.nix
··· 17 17 platforms = with lib.platforms; linux; 18 18 maintainers = with lib.maintainers; [raskin]; 19 19 license = lib.licenses.bsd3; 20 - inherit version; 21 20 downloadPage = "http://www.creytiv.com/pub/"; 22 21 updateWalker = true; 23 22 downloadURLRegexp = "/re-.*[.]tar[.].*";
+1 -4
pkgs/development/libraries/libxklavier/default.nix
··· 1 1 { lib, stdenv, fetchgit, autoreconfHook, pkg-config, gtk-doc, xkeyboard_config, libxml2, xorg, docbook_xsl 2 2 , glib, isocodes, gobject-introspection }: 3 3 4 - let 5 - version = "5.4"; 6 - in 7 4 stdenv.mkDerivation rec { 8 5 pname = "libxklavier"; 9 - inherit version; 6 + version = "5.4"; 10 7 11 8 src = fetchgit { 12 9 url = "git://anongit.freedesktop.org/git/libxklavier";
+2 -4
pkgs/development/libraries/libxsmm/default.nix
··· 4 4 , enableStatic ? stdenv.hostPlatform.isStatic 5 5 }: 6 6 7 - let 8 - version = "1.16.1"; 9 - in stdenv.mkDerivation { 7 + stdenv.mkDerivation rec { 10 8 pname = "libxsmm"; 11 - inherit version; 9 + version = "1.16.1"; 12 10 13 11 src = fetchFromGitHub { 14 12 owner = "hfp";
-1
pkgs/development/libraries/linbox/default.nix
··· 71 71 enableParallelBuilding = true; 72 72 73 73 meta = with lib; { 74 - inherit version; 75 74 description = "C++ library for exact, high-performance linear algebra"; 76 75 license = licenses.lgpl21Plus; 77 76 maintainers = teams.sage.members;
-1
pkgs/development/libraries/mdds/default.nix
··· 19 19 checkInputs = [ boost ]; 20 20 21 21 meta = with lib; { 22 - inherit version; 23 22 homepage = "https://gitlab.com/mdds/mdds"; 24 23 description = "A collection of multi-dimensional data structure and indexing algorithm"; 25 24 platforms = platforms.all;
-1
pkgs/development/libraries/mpfi/default.nix
··· 16 16 buildInputs = [ mpfr ]; 17 17 18 18 meta = { 19 - inherit version; 20 19 description = "A multiple precision interval arithmetic library based on MPFR"; 21 20 homepage = "https://gforge.inria.fr/projects/mpfi/"; 22 21 license = lib.licenses.lgpl21Plus;
-1
pkgs/development/libraries/mpir/default.nix
··· 15 15 ++ lib.optionals stdenv.isLinux [ "--enable-fat" ]; 16 16 17 17 meta = { 18 - inherit version; 19 18 description = "A highly optimised library for bignum arithmetic forked from GMP"; 20 19 license = lib.licenses.lgpl3Plus; 21 20 maintainers = [lib.maintainers.raskin];
+2 -4
pkgs/development/libraries/ndpi/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, which, autoconf, automake, libtool, libpcap 2 2 , pkg-config }: 3 3 4 - let version = "3.4"; in 5 - 6 - stdenv.mkDerivation { 4 + stdenv.mkDerivation rec { 7 5 pname = "ndpi"; 8 - inherit version; 6 + version = "3.4"; 9 7 10 8 src = fetchFromGitHub { 11 9 owner = "ntop";
+3 -3
pkgs/development/libraries/nix-plugins/default.nix
··· 1 1 { lib, stdenv, fetchFromGitHub, nix, cmake, pkg-config, boost }: 2 - let version = "6.0.0"; in 3 - stdenv.mkDerivation { 2 + 3 + stdenv.mkDerivation rec { 4 4 pname = "nix-plugins"; 5 - inherit version; 5 + version = "6.0.0"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "shlevy";
+2 -5
pkgs/development/libraries/nss/3.53.nix
··· 9 9 url = "http://dev.gentoo.org/~polynomial-c/mozilla/nss-3.15.4-pem-support-20140109.patch.xz"; 10 10 sha256 = "10ibz6y0hknac15zr6dw4gv9nb5r5z9ym6gq18j3xqx7v7n3vpdw"; 11 11 }; 12 - version = "3.53.1"; 13 - underscoreVersion = builtins.replaceStrings ["."] ["_"] version; 14 - 15 12 in stdenv.mkDerivation rec { 16 13 pname = "nss"; 17 - inherit version; 14 + version = "3.53.1"; 18 15 19 16 src = fetchurl { 20 - url = "mirror://mozilla/security/nss/releases/NSS_${underscoreVersion}_RTM/src/${pname}-${version}.tar.gz"; 17 + url = "mirror://mozilla/security/nss/releases/NSS_${lib.replaceStrings ["."] ["_"] version}_RTM/src/${pname}-${version}.tar.gz"; 21 18 sha256 = "05jk65x3zy6q8lx2djj8ik7kg741n88iy4n3bblw89cv0xkxxk1d"; 22 19 }; 23 20
+1 -5
pkgs/development/libraries/ntrack/default.nix
··· 1 1 { lib, stdenv, fetchurl, qt4, pkg-config, libnl, python }: 2 2 3 - let 4 - version = "016"; 5 - in 6 - 7 3 stdenv.mkDerivation rec { 8 4 pname = "ntrack"; 9 - inherit version; 5 + version = "016"; 10 6 11 7 src = fetchurl { 12 8 url = "https://launchpad.net/ntrack/main/${version}/+download/${pname}-${version}.tar.gz";
+2 -5
pkgs/development/libraries/opencore-amr/default.nix
··· 1 1 { lib, stdenv, fetchurl }: 2 2 3 - let 4 - version = "0.1.5"; 5 - in 6 - stdenv.mkDerivation { 3 + stdenv.mkDerivation rec { 7 4 pname = "opencore-amr"; 8 - inherit version; 5 + version = "0.1.5"; 9 6 src = fetchurl { 10 7 url = "https://vorboss.dl.sourceforge.net/project/opencore-amr/opencore-amr/opencore-amr-${version}.tar.gz"; 11 8 sha256 = "0hfk9khz3by0119h3jdwgdfd7jgkdbzxnmh1wssvylgnsnwnq01c";
-1
pkgs/development/libraries/openwsman/default.nix
··· 35 35 license = licenses.bsd3; 36 36 maintainers = with maintainers; [ deepfire ]; 37 37 platforms = platforms.linux; # PAM is not available on Darwin 38 - inherit version; 39 38 }; 40 39 }
-1
pkgs/development/libraries/osip/default.nix
··· 13 13 description = "The GNU oSIP library, an implementation of the Session Initiation Protocol (SIP)"; 14 14 maintainers = with lib.maintainers; [ raskin ]; 15 15 platforms = lib.platforms.all; 16 - inherit version; 17 16 }; 18 17 }
+2 -5
pkgs/development/libraries/pmix/default.nix
··· 2 2 , libtool, flex, libevent, hwloc, munge, zlib, pandoc 3 3 } : 4 4 5 - let 5 + stdenv.mkDerivation rec { 6 + pname = "pmix"; 6 7 version = "3.2.3"; 7 - 8 - in stdenv.mkDerivation { 9 - pname = "pmix"; 10 - inherit version; 11 8 12 9 src = fetchFromGitHub { 13 10 repo = "openpmix";
-1
pkgs/development/libraries/safefile/default.nix
··· 17 17 }; 18 18 19 19 meta = { 20 - inherit version; 21 20 description = "File open routines to safely open a file when in the presence of an attack"; 22 21 license = lib.licenses.asl20 ; 23 22 maintainers = [lib.maintainers.raskin];
-1
pkgs/development/libraries/sblim-sfcc/default.nix
··· 23 23 license = licenses.cpl10; 24 24 maintainers = with maintainers; [ deepfire ]; 25 25 platforms = platforms.unix; 26 - inherit version; 27 26 }; 28 27 }
+1 -3
pkgs/development/libraries/science/math/liblapack/default.nix
··· 7 7 }: 8 8 let 9 9 inherit (lib) optional; 10 - version = "3.9.1"; 11 10 in 12 11 13 12 stdenv.mkDerivation rec { 14 13 pname = "liblapack"; 15 - inherit version; 14 + version = "3.9.1"; 16 15 17 16 src = fetchFromGitHub { 18 17 owner = "Reference-LAPACK"; ··· 57 56 ''; 58 57 59 58 meta = with lib; { 60 - inherit version; 61 59 description = "Linear Algebra PACKage"; 62 60 homepage = "http://www.netlib.org/lapack/"; 63 61 license = licenses.bsd3;
-1
pkgs/development/libraries/science/math/lrs/default.nix
··· 16 16 ''; 17 17 18 18 meta = { 19 - inherit version; 20 19 description = "Implementation of the reverse search algorithm for vertex enumeration/convex hull problems"; 21 20 license = lib.licenses.gpl2 ; 22 21 maintainers = [lib.maintainers.raskin];
+2 -6
pkgs/development/libraries/sfml/default.nix
··· 3 3 , IOKit, Foundation, AppKit, OpenAL 4 4 }: 5 5 6 - let 7 - version = "2.5.1"; 8 - in 9 - 10 - stdenv.mkDerivation { 6 + stdenv.mkDerivation rec { 11 7 pname = "sfml"; 12 - inherit version; 8 + version = "2.5.1"; 13 9 14 10 src = fetchzip { 15 11 url = "https://github.com/SFML/SFML/archive/${version}.tar.gz";
+2 -5
pkgs/development/libraries/startup-notification/default.nix
··· 1 1 {lib, stdenv, fetchurl, libX11, libxcb, pkg-config, xcbutil}: 2 2 3 - let 3 + stdenv.mkDerivation rec { 4 + pname = "libstartup-notification"; 4 5 version = "0.12"; 5 - in 6 - stdenv.mkDerivation { 7 - pname = "libstartup-notification"; 8 - inherit version; 9 6 src = fetchurl { 10 7 url = "https://www.freedesktop.org/software/startup-notification/releases/startup-notification-${version}.tar.gz"; 11 8 sha256 = "3c391f7e930c583095045cd2d10eb73a64f085c7fde9d260f2652c7cb3cfbe4a";
-1
pkgs/development/libraries/tachyon/default.nix
··· 72 72 cp -r scenes "$out/share/tachyon/scenes" 73 73 ''; 74 74 meta = { 75 - inherit version; 76 75 description = "A Parallel / Multiprocessor Ray Tracing System"; 77 76 license = lib.licenses.bsd3; 78 77 maintainers = [lib.maintainers.raskin];
+2 -5
pkgs/development/libraries/uthash/default.nix
··· 1 1 { lib, stdenv, fetchurl, perl }: 2 2 3 - let 3 + stdenv.mkDerivation rec { 4 + pname = "uthash"; 4 5 version = "2.1.0"; 5 - in 6 - stdenv.mkDerivation { 7 - pname = "uthash"; 8 - inherit version; 9 6 10 7 src = fetchurl { 11 8 url = "https://github.com/troydhanson/uthash/archive/v${version}.tar.gz";
+2 -4
pkgs/development/libraries/volume-key/default.nix
··· 4 4 , buildPackages 5 5 }: 6 6 7 - let 8 - version = "0.3.11"; 9 - in stdenv.mkDerivation { 7 + stdenv.mkDerivation rec { 10 8 pname = "volume_key"; 11 - inherit version; 9 + version = "0.3.11"; 12 10 13 11 src = fetchgit { 14 12 url = "https://pagure.io/volume_key.git";
+2 -5
pkgs/development/libraries/wxwidgets/2.9/default.nix
··· 11 11 12 12 with lib; 13 13 14 - let 14 + stdenv.mkDerivation rec { 15 + pname = "wxwidgets"; 15 16 version = "2.9.4"; 16 - in 17 - stdenv.mkDerivation { 18 - pname = "wxwidgets"; 19 - inherit version; 20 17 21 18 src = fetchurl { 22 19 url = "mirror://sourceforge/wxwindows/wxWidgets-${version}.tar.bz2";
+2 -5
pkgs/development/libraries/xmlsec/default.nix
··· 4 4 , openssl, nss_3_53, lib, runCommandCC, writeText }: 5 5 6 6 lib.fix (self: 7 - let 7 + stdenv.mkDerivation rec { 8 + pname = "xmlsec"; 8 9 version = "1.2.31"; 9 - in 10 - stdenv.mkDerivation { 11 - pname = "xmlsec"; 12 - inherit version; 13 10 14 11 src = fetchurl { 15 12 url = "https://www.aleksey.com/xmlsec/download/xmlsec1-${version}.tar.gz";
-1
pkgs/development/ruby-modules/bundix/default.nix
··· 28 28 ''; 29 29 30 30 meta = { 31 - inherit version; 32 31 description = "Creates Nix packages from Gemfiles"; 33 32 longDescription = '' 34 33 This is a tool that converts Gemfile.lock files to nix expressions.
-1
pkgs/tools/archivers/zpaq/default.nix
··· 32 32 license = licenses.gpl3Plus ; 33 33 maintainers = with maintainers; [ raskin ]; 34 34 platforms = platforms.linux; 35 - inherit version; 36 35 }; 37 36 }
-1
pkgs/tools/compression/lrzip/default.nix
··· 19 19 homepage = "http://ck.kolivas.org/apps/lrzip/"; 20 20 description = "The CK LRZIP compression program (LZMA + RZIP)"; 21 21 license = lib.licenses.gpl2Plus; 22 - inherit version; 23 22 platforms = lib.platforms.unix; 24 23 }; 25 24 }
-1
pkgs/tools/compression/pixz/default.nix
··· 28 28 ''; 29 29 30 30 meta = { 31 - inherit version; 32 31 description = "A parallel compressor/decompressor for xz format"; 33 32 license = lib.licenses.bsd2; 34 33 maintainers = [lib.maintainers.raskin];
-1
pkgs/tools/filesystems/fatsort/default.nix
··· 20 20 description = "Sorts FAT partition table, for devices that don't do sorting of files"; 21 21 maintainers = [ maintainers.kovirobi ]; 22 22 license = licenses.gpl2; 23 - inherit version; 24 23 platforms = platforms.linux; 25 24 }; 26 25 }
-1
pkgs/tools/filesystems/smbnetfs/default.nix
··· 18 18 license = licenses.gpl2; 19 19 downloadPage = "https://sourceforge.net/projects/smbnetfs/files/smbnetfs"; 20 20 updateWalker = true; 21 - inherit version; 22 21 homepage = "https://sourceforge.net/projects/smbnetfs/"; 23 22 }; 24 23 }
-1
pkgs/tools/security/aws-okta/default.nix
··· 21 21 buildInputs = [ libusb1 libiconv ]; 22 22 23 23 meta = with lib; { 24 - inherit version; 25 24 description = "aws-vault like tool for Okta authentication"; 26 25 license = licenses.mit; 27 26 maintainers = with maintainers; [imalsogreg Chili-Man];
-1
pkgs/tools/security/sudolikeaboss/default.nix
··· 22 22 ]; 23 23 24 24 meta = with lib; { 25 - inherit version; 26 25 inherit (src.meta) homepage; 27 26 description = "Get 1password access from iterm2"; 28 27 license = licenses.mit;