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