From 647275a16fb9c8831db1eb1424d3463dd1817ce2 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sat, 26 Jun 2021 15:15:46 +0200 Subject: [PATCH 01/15] pythonPackages.ofxparse: unstable-2020-02-05 -> 0.21 --- .../python-modules/ofxparse/default.nix | 14 +++++--------- 1 file changed, 5 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/ofxparse/default.nix b/pkgs/development/python-modules/ofxparse/default.nix index 33d027f1beed..a364c7393ba8 100644 --- a/pkgs/development/python-modules/ofxparse/default.nix +++ b/pkgs/development/python-modules/ofxparse/default.nix @@ -1,6 +1,6 @@ { lib , buildPythonPackage -, fetchFromGitHub +, fetchPypi , six , beautifulsoup4 , lxml @@ -8,15 +8,11 @@ buildPythonPackage rec { pname = "ofxparse"; - version = "unstable-2020-02-05"; + version = "0.21"; - # The newer changes haven't been released yet and ledger-autosync - # depends on them: - src = fetchFromGitHub { - owner = "jseutter"; - repo = "ofxparse"; - rev = "3236cfd96434feb6bc79a8b66f3400f18e2ad3c4"; - sha256 = "1rkp174102q7hwjrg3na0qnfd612xb3r360b9blkbprjhzxy7gr7"; + src = fetchPypi { + inherit pname version; + sha256 = "19y4sp5l9jqiqzzlbqdfiab42qx7d84n4xm4s7jfq397666vcyh5"; }; propagatedBuildInputs = [ six beautifulsoup4 lxml ]; From 37635624cf506a5299095ad39dcd7eca661ea70a Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sat, 26 Jun 2021 15:16:18 +0200 Subject: [PATCH 02/15] ledger-autosync: format dependency list --- pkgs/applications/office/ledger-autosync/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/office/ledger-autosync/default.nix b/pkgs/applications/office/ledger-autosync/default.nix index 74fcf1af8f9f..47faeeccc14c 100644 --- a/pkgs/applications/office/ledger-autosync/default.nix +++ b/pkgs/applications/office/ledger-autosync/default.nix @@ -1,4 +1,11 @@ -{ lib, python3Packages, fetchFromGitHub, ledger, hledger, useLedger ? true, useHledger ? true }: +{ lib +, python3Packages +, fetchFromGitHub +, ledger +, hledger +, useLedger ? true +, useHledger ? true +}: python3Packages.buildPythonApplication rec { pname = "ledger-autosync"; From fe090d4c1348565c804bb8fc61c03dba25238056 Mon Sep 17 00:00:00 2001 From: Damien Cassou Date: Sat, 26 Jun 2021 15:50:41 +0200 Subject: [PATCH 03/15] ledger-autosync: unstable-2021-04-01 -> 1.0.3 Co-authored-by: Sandro --- .../office/ledger-autosync/default.nix | 27 ++++++++++--------- .../fix-ofxparse-dependency.patch | 13 --------- 2 files changed, 14 insertions(+), 26 deletions(-) delete mode 100644 pkgs/applications/office/ledger-autosync/fix-ofxparse-dependency.patch diff --git a/pkgs/applications/office/ledger-autosync/default.nix b/pkgs/applications/office/ledger-autosync/default.nix index 47faeeccc14c..4f992c3ebe95 100644 --- a/pkgs/applications/office/ledger-autosync/default.nix +++ b/pkgs/applications/office/ledger-autosync/default.nix @@ -9,22 +9,19 @@ python3Packages.buildPythonApplication rec { pname = "ledger-autosync"; - version = "unstable-2021-04-01"; + version = "1.0.3"; + format = "pyproject"; # no tests included in PyPI tarball src = fetchFromGitHub { owner = "egh"; repo = "ledger-autosync"; - rev = "0b674c57c833f75b1a36d8caf78e1567c8e2180c"; - sha256 = "0q404gr85caib5hg83cnmgx4684l72w9slxyxrwsiwhlf7gm443q"; + rev = "v${version}"; + sha256 = "0n3y4qxsv1cyvyap95h3rj4bj1sinyfgsajygm7s8di3j5aabqr2"; }; - patches = [ - # ledger-autosync specifies an URL for its ofxparse - # dependency. This patch removes the URL to only use the - # `ofxparse` name. This works because nixpkgs' version of ofxparse - # is more recent than the latest release. - ./fix-ofxparse-dependency.patch + nativeBuildInputs = with python3Packages; [ + poetry-core ]; propagatedBuildInputs = with python3Packages; [ @@ -52,10 +49,14 @@ python3Packages.buildPythonApplication rec { # Checks require ledger as a python package, # ledger does not support python3 while ledger-autosync requires it. - checkInputs = with python3Packages; [ ledger hledger nose mock ]; - checkPhase = '' - nosetests -a generic -a ledger -a hledger - ''; + checkInputs = with python3Packages; [ ledger hledger nose mock pytestCheckHook ]; + + # Disable some non-passing tests: + # https://github.com/egh/ledger-autosync/issues/127 + disabledTests = [ + "test_payee_match" + "test_args_only" + ]; meta = with lib; { homepage = "https://github.com/egh/ledger-autosync"; diff --git a/pkgs/applications/office/ledger-autosync/fix-ofxparse-dependency.patch b/pkgs/applications/office/ledger-autosync/fix-ofxparse-dependency.patch deleted file mode 100644 index cb12ba9f3351..000000000000 --- a/pkgs/applications/office/ledger-autosync/fix-ofxparse-dependency.patch +++ /dev/null @@ -1,13 +0,0 @@ -diff --git a/setup.py b/setup.py -index eda6db5..ed6b90b 100644 ---- a/setup.py -+++ b/setup.py -@@ -38,7 +38,7 @@ setup( - install_requires=[ - 'setuptools>=26', - 'ofxclient', -- "ofxparse @ https://github.com/jseutter/ofxparse/tarball/3236cfd96434feb6bc79a8b66f3400f18e2ad3c4" -+ 'ofxparse' - ], - - extras_require={ \ No newline at end of file From 2eacddcae98220684761201e7151e794918f0df0 Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Sat, 26 Jun 2021 21:54:10 +0100 Subject: [PATCH 04/15] just: fix changelog --- pkgs/development/tools/just/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/just/default.nix b/pkgs/development/tools/just/default.nix index e1ae8a5a0e7c..c4091fd24483 100644 --- a/pkgs/development/tools/just/default.nix +++ b/pkgs/development/tools/just/default.nix @@ -52,7 +52,7 @@ rustPlatform.buildRustPackage rec { meta = with lib; { homepage = "https://github.com/casey/just"; - changelog = "https://github.com/casey/just/blob/v${version}/CHANGELOG.md"; + changelog = "https://github.com/casey/just/blob/${version}/CHANGELOG.md"; description = "A handy way to save and run project-specific commands"; license = licenses.cc0; maintainers = with maintainers; [ xrelkd jk ]; From 8a900b15fbe97ca2d59bff14f90542676ed8a882 Mon Sep 17 00:00:00 2001 From: 06kellyjac Date: Sat, 26 Jun 2021 21:59:09 +0100 Subject: [PATCH 05/15] just: 0.9.5 -> 0.9.6 --- pkgs/development/tools/just/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/development/tools/just/default.nix b/pkgs/development/tools/just/default.nix index c4091fd24483..8a8d4201451f 100644 --- a/pkgs/development/tools/just/default.nix +++ b/pkgs/development/tools/just/default.nix @@ -2,16 +2,16 @@ rustPlatform.buildRustPackage rec { pname = "just"; - version = "0.9.5"; + version = "0.9.6"; src = fetchFromGitHub { owner = "casey"; repo = pname; rev = version; - sha256 = "sha256-fDbnOfT2BTCLF2knUf3ccDnuA0mhM+gkbja7xgmWoaY="; + sha256 = "sha256-FWJ7fSJysT5LVFio49nbN0T0b+zWwiV7NvEJlojbNKs="; }; - cargoSha256 = "sha256-mBrFw5d0LXTKj7Nm8XmT5hsq/d/x84U/Gp02+lay2OY="; + cargoSha256 = "sha256-/VmCuHPURQTyeIumMaWVrFu18ZgVR0klpc/bO1f1w4o="; nativeBuildInputs = [ installShellFiles ]; buildInputs = lib.optionals stdenv.isDarwin [ libiconv ]; From 81285f4cf36c644ea4e0e648285ea23aeb3a7d6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 27 Jun 2021 00:09:33 +0200 Subject: [PATCH 06/15] python3Packages.python-izone: 1.1.5 -> 1.1.6 https://github.com/Swamp-Ig/pizone/releases/tag/v1.1.6 --- .../python-modules/python-izone/default.nix | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/pkgs/development/python-modules/python-izone/default.nix b/pkgs/development/python-modules/python-izone/default.nix index 5033ef3e2cff..4bd1f988d455 100644 --- a/pkgs/development/python-modules/python-izone/default.nix +++ b/pkgs/development/python-modules/python-izone/default.nix @@ -11,7 +11,7 @@ buildPythonPackage rec { pname = "python-izone"; - version = "1.1.5"; + version = "1.1.6"; disabled = pythonOlder "3.5"; @@ -19,7 +19,7 @@ buildPythonPackage rec { owner = "Swamp-Ig"; repo = "pizone"; rev = "v${version}"; - sha256 = "0ilvawlhyg5p08ri26zbcvgysrfsmza23scy4ijrx3jbc3669r2c"; + sha256 = "sha256-zgE1ccEPSa9nX0SEMN02VEGfnHexk/+jCJe7ugUL5UA="; }; propagatedBuildInputs = [ @@ -33,13 +33,6 @@ buildPythonPackage rec { pytestCheckHook ]; - disabledTests = [ - # attempt network connection - "test_fail_on_connect" - "test_connection_lost" - "test_ip_addr_change" - ]; - pythonImportsCheck = [ "pizone" ]; meta = with lib; { From 05046c2c2ae4b24cfacc00cc8f17e9395ee06fcb Mon Sep 17 00:00:00 2001 From: matthewcroughan Date: Sat, 26 Jun 2021 23:20:55 +0100 Subject: [PATCH 07/15] hikari: 2.3.0 -> 2.3.1 This removes the patches necessary to build with wlroots 0.14.0, as they have been merged into Hikari upstream --- .../applications/window-managers/hikari/default.nix | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pkgs/applications/window-managers/hikari/default.nix b/pkgs/applications/window-managers/hikari/default.nix index 2ec1ff26a793..a9545757d792 100644 --- a/pkgs/applications/window-managers/hikari/default.nix +++ b/pkgs/applications/window-managers/hikari/default.nix @@ -12,7 +12,7 @@ let pname = "hikari"; - version = "2.3.0"; + version = "2.3.1"; in stdenv.mkDerivation { @@ -20,18 +20,9 @@ stdenv.mkDerivation { src = fetchzip { url = "https://hikari.acmelabs.space/releases/${pname}-${version}.tar.gz"; - sha256 = "0vxwma2r9mb2h0c3dkpvf8dbrc2x2ykhc5bb0vd72sl9pwj4jxmy"; + sha256 = "sha256-o6YsUATcWHSuAEfU7WnwxKNxRNuBt069qCv0FKDWStg="; }; - patches = [ - # To fix the build with wlroots 0.14.0: - (fetchpatch { - url = "https://cgit.freebsd.org/ports/plain/x11-wm/hikari/files/patch-wlroots-0.14?id=f2820b6cc2170feef17989c422f2cf46644a5b57"; - sha256 = "1kpbcmgdm4clmf2ryrs5pv3ghycnq4glvs3d3ll6zr244ks5yf43"; - extraPrefix = ""; - }) - ]; - nativeBuildInputs = [ pkg-config bmake ]; buildInputs = [ From 0da8789e736d16fa42e0913aed3a5c835bab3630 Mon Sep 17 00:00:00 2001 From: Maas Lalani Date: Sat, 26 Jun 2021 18:27:35 -0400 Subject: [PATCH 08/15] slides: 0.2.0 -> 0.3.0 --- pkgs/applications/misc/slides/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/applications/misc/slides/default.nix b/pkgs/applications/misc/slides/default.nix index ce5987d6c186..4eb0981d81f1 100644 --- a/pkgs/applications/misc/slides/default.nix +++ b/pkgs/applications/misc/slides/default.nix @@ -1,14 +1,14 @@ -{ lib, buildGoModule, fetchFromGitHub, bash, go, python3, ruby }: +{ lib, buildGoModule, fetchFromGitHub, bash, go, python3, ruby, sd }: buildGoModule rec { pname = "slides"; - version = "0.2.0"; + version = "0.3.0"; src = fetchFromGitHub { owner = "maaslalani"; repo = "slides"; rev = "v${version}"; - sha256 = "0vwpisyvsgmvrzp26hapghgqmm3fhrzrvdnmws00xc2q3fsij9qx"; + sha256 = "00sml6b9q3df9dgl7fpsn6a3qkq6xklnbfvvblf91xdf4ssn7wrx"; }; checkInputs = [ @@ -16,6 +16,7 @@ buildGoModule rec { go python3 ruby + sd ]; vendorSha256 = "0y6fz9rw702mji571k0gp4kpfx7xbv7rvlnmpfjygy6lmp7wga6f"; From 773bdf699871fdc590c0ff94b464f19149264f79 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Fri, 25 Jun 2021 08:53:41 +0200 Subject: [PATCH 09/15] =?UTF-8?q?why3:=201.3.3=20=E2=86=92=201.4.0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit framac: 22.0 → 23.0-rc1 --- pkgs/applications/science/logic/why3/default.nix | 15 ++++++--------- .../tools/analysis/frama-c/default.nix | 12 +++++++++--- 2 files changed, 15 insertions(+), 12 deletions(-) diff --git a/pkgs/applications/science/logic/why3/default.nix b/pkgs/applications/science/logic/why3/default.nix index c56e5445f0be..f46838c3b07b 100644 --- a/pkgs/applications/science/logic/why3/default.nix +++ b/pkgs/applications/science/logic/why3/default.nix @@ -3,16 +3,15 @@ stdenv.mkDerivation { pname = "why3"; - version = "1.3.3"; + version = "1.4.0"; src = fetchurl { - url = "https://gforge.inria.fr/frs/download.php/file/38367/why3-1.3.3.tar.gz"; - sha256 = "1n0a2nn1gnk0zg339lh698g4wpk7m8m1vyi2yvifd5adqvk4milw"; + url = "https://gforge.inria.fr/frs/download.php/file/38425/why3-1.4.0.tar.gz"; + sha256 = "0lw0cpx347zz9vvwqibmbxgs80fsd16scgk3isscvwxnajpc3rv8"; }; buildInputs = with ocamlPackages; [ ocaml findlib ocamlgraph zarith menhir menhirLib - # Compressed Sessions # Emacs compilation of why3.el emacs # Documentation @@ -21,18 +20,16 @@ stdenv.mkDerivation { lablgtk # WebIDE js_of_ocaml js_of_ocaml-ppx + # S-expression output for why3pp + ppx_deriving ppx_sexp_conv # Coq Support coqPackages.coq coqPackages.flocq ocamlPackages.camlp5 ]; - propagatedBuildInputs = with ocamlPackages; [ camlzip num ]; + propagatedBuildInputs = with ocamlPackages; [ camlzip num re sexplib ]; enableParallelBuilding = true; - postPatch = '' - substituteInPlace Makefile.in --replace js_of_ocaml.ppx js_of_ocaml-ppx - ''; - configureFlags = [ "--enable-verbose-make" ]; installTargets = [ "install" "install-lib" ]; diff --git a/pkgs/development/tools/analysis/frama-c/default.nix b/pkgs/development/tools/analysis/frama-c/default.nix index 1079974ae623..ab82aed8e5e6 100644 --- a/pkgs/development/tools/analysis/frama-c/default.nix +++ b/pkgs/development/tools/analysis/frama-c/default.nix @@ -17,6 +17,12 @@ let ocamlgraph stdlib-shims why3 + re + seq + sexplib + sexplib0 + parsexp + base yojson zarith ]; @@ -25,12 +31,12 @@ in stdenv.mkDerivation rec { pname = "frama-c"; - version = "22.0"; - slang = "Titanium"; + version = "23.0-rc1"; + slang = "Vanadium"; src = fetchurl { url = "http://frama-c.com/download/frama-c-${version}-${slang}.tar.gz"; - sha256 = "1mq1fijka95ydrla486yr4w6wdl9l7vmp512s1q00b0p6lmfwmkh"; + sha256 = "1z9f9a217bav3vfc99kq57d5rza6j7hr91ndviwkgcaib6wc5hcv"; }; preConfigure = lib.optionalString stdenv.cc.isClang "configureFlagsArray=(\"--with-cpp=clang -E -C\")"; From d60534722e90a367a5c849fb7ecc294f08c75755 Mon Sep 17 00:00:00 2001 From: Vincent Laporte Date: Sat, 26 Jun 2021 22:42:23 +0200 Subject: [PATCH 10/15] why3: use GTK3 --- pkgs/applications/science/logic/why3/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/science/logic/why3/default.nix b/pkgs/applications/science/logic/why3/default.nix index f46838c3b07b..924ff3fd9fd2 100644 --- a/pkgs/applications/science/logic/why3/default.nix +++ b/pkgs/applications/science/logic/why3/default.nix @@ -17,7 +17,7 @@ stdenv.mkDerivation { # Documentation rubber hevea # GUI - lablgtk + lablgtk3-sourceview3 # WebIDE js_of_ocaml js_of_ocaml-ppx # S-expression output for why3pp From 4c31c2113f5535f96d97ad9fb0b639f11128ae39 Mon Sep 17 00:00:00 2001 From: Johannes Schleifenbaum Date: Sun, 27 Jun 2021 09:07:33 +0200 Subject: [PATCH 11/15] pythonPackages.pystray: 0.17.3 -> 0.17.4 --- pkgs/development/python-modules/pystray/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pystray/default.nix b/pkgs/development/python-modules/pystray/default.nix index 45bc2a55e599..0bba9f988551 100644 --- a/pkgs/development/python-modules/pystray/default.nix +++ b/pkgs/development/python-modules/pystray/default.nix @@ -3,13 +3,13 @@ buildPythonPackage rec { pname = "pystray"; - version = "0.17.3"; + version = "0.17.4"; src = fetchFromGitHub { owner = "moses-palmer"; repo = "pystray"; rev = "v${version}"; - sha256 = "sha256-da2ZkehyXrxW5LdMR3K5AEQhiCpx8ygn6eswTC8fsRo="; + sha256 = "sha256-Rg2bbFTXLc1hXdShUmFxPcJtlcyWhspcjZtJYDSQ6vQ="; }; nativeBuildInputs = [ sphinx ]; From 3524f5a4c9a8b4695628046d7e8348bca5bb198b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sat, 26 Jun 2021 23:47:32 +0200 Subject: [PATCH 12/15] python3Packages.adblock: 0.4.4 -> 0.5.0 https://github.com/ArniDagur/python-adblock/releases/tag/0.5.0 --- pkgs/development/python-modules/adblock/default.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/adblock/default.nix b/pkgs/development/python-modules/adblock/default.nix index 186e2e9e4437..2763684c0d4a 100644 --- a/pkgs/development/python-modules/adblock/default.nix +++ b/pkgs/development/python-modules/adblock/default.nix @@ -12,12 +12,11 @@ , Security , pytestCheckHook , toml -, python }: buildPythonPackage rec { pname = "adblock"; - version = "0.4.4"; + version = "0.5.0"; disabled = isPy27; # Pypi only has binary releases @@ -25,13 +24,13 @@ buildPythonPackage rec { owner = "ArniDagur"; repo = "python-adblock"; rev = version; - sha256 = "sha256-zNQ8zEpTLzyU5AnFBNpOGDJ02Ogu2+xl85LA+ia7Si4="; + sha256 = "sha256-JjmMfL24778T6LCuElXsD7cJxQ+RkqbNEnEqwoN24WE="; }; cargoDeps = rustPlatform.fetchCargoTarball { inherit src; name = "${pname}-${version}"; - hash = "sha256-ajVZ0xPxC31hM1gQr3DC1HWdpIYBCSmqm0z2cflcClg="; + hash = "sha256-w+/W4T3ukRHNpCPjhlHZLPn6sgCpz4QHVD8VW+Rw5BI="; }; format = "pyproject"; From 22ea812bffbccb200d587be4ce7ed29978d98910 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 27 Jun 2021 10:42:25 +0200 Subject: [PATCH 13/15] ghostwriter: 2.0.1 -> 2.0.2 https://github.com/wereturtle/ghostwriter/releases/tag/2.0.2 --- pkgs/applications/editors/ghostwriter/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/applications/editors/ghostwriter/default.nix b/pkgs/applications/editors/ghostwriter/default.nix index d23b42811b89..f5d13442cce8 100644 --- a/pkgs/applications/editors/ghostwriter/default.nix +++ b/pkgs/applications/editors/ghostwriter/default.nix @@ -2,13 +2,13 @@ mkDerivation rec { pname = "ghostwriter"; - version = "2.0.1"; + version = "2.0.2"; src = fetchFromGitHub { owner = "wereturtle"; repo = pname; rev = version; - sha256 = "sha256-bNVhYwX60F3lrP9UmZSntfz83vbmHe9tu/4nUgzUWR4="; + sha256 = "sha256-kNt0IIAcblDJ81ENIkoJuJvrI+F+fdVgWUJ6g1YpjqU="; }; nativeBuildInputs = [ qmake pkg-config qttools ]; From 4ba70da807359ed01d662763a96c7b442762e5ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 27 Jun 2021 10:59:06 +0200 Subject: [PATCH 14/15] ghostwriter: add run-time dependencies to PATH --- .../editors/ghostwriter/default.nix | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/pkgs/applications/editors/ghostwriter/default.nix b/pkgs/applications/editors/ghostwriter/default.nix index f5d13442cce8..fdada2e7769a 100644 --- a/pkgs/applications/editors/ghostwriter/default.nix +++ b/pkgs/applications/editors/ghostwriter/default.nix @@ -1,4 +1,16 @@ -{ lib, stdenv, mkDerivation, fetchFromGitHub, qmake, pkg-config, qttools, qtwebengine, hunspell }: +{ lib +, stdenv +, mkDerivation +, fetchFromGitHub +, qmake +, pkg-config +, qttools +, qtwebengine +, hunspell +, cmark +, multimarkdown +, pandoc +}: mkDerivation rec { pname = "ghostwriter"; @@ -15,6 +27,10 @@ mkDerivation rec { buildInputs = [ qtwebengine hunspell ]; + qtWrapperArgs = [ + "--prefix" "PATH" ":" (lib.makeBinPath [ cmark multimarkdown pandoc ]) + ]; + meta = with lib; { description = "A cross-platform, aesthetic, distraction-free Markdown editor"; homepage = src.meta.homepage; From 8e4c6b845965440850eaec79db7086e5d9e350fd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6gler?= Date: Sun, 27 Jun 2021 12:46:51 +0200 Subject: [PATCH 15/15] nushell: 0.32.0 -> 0.33.0 --- pkgs/shells/nushell/default.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgs/shells/nushell/default.nix b/pkgs/shells/nushell/default.nix index 39048730485c..65ed6d5000c2 100644 --- a/pkgs/shells/nushell/default.nix +++ b/pkgs/shells/nushell/default.nix @@ -17,16 +17,16 @@ rustPlatform.buildRustPackage rec { pname = "nushell"; - version = "0.32.0"; + version = "0.33.0"; src = fetchFromGitHub { owner = pname; repo = pname; rev = version; - sha256 = "1wj054rzv88ys4ask4zp7crrw0dxrck8svlj3i16qqd8x5dnyhqs"; + sha256 = "sha256-Asjm3IoAfzphITLQuNh6r/i/pjEM/A+wpCsAB83bu2U="; }; - cargoSha256 = "09ph3njll9assk85yh5pyvpsab3nk0mvxrdpqhy5rwps1478w0cq"; + cargoSha256 = "sha256-Ly59mdUzSI2pIPbckWn1WBz/o2zVzpAzaCDROLdjG7Y="; nativeBuildInputs = [ pkg-config ] ++ lib.optionals (withStableFeatures && stdenv.isLinux) [ python3 ];