blessings: 1.3.0 -> 2.1.0

This commit is contained in:
tv 2019-01-25 14:26:50 +01:00
parent 2e5ed5d1bb
commit 7c160fd1fa
6 changed files with 18 additions and 23 deletions

View File

@ -7,8 +7,8 @@ with import <stockholm/lib>;
sha256 = "1k908zap3694fcxdk4bb29s54b0lhdh557y10ybjskfwnym7szn1"; sha256 = "1k908zap3694fcxdk4bb29s54b0lhdh557y10ybjskfwnym7szn1";
}; };
"18.09" = { "18.09" = {
version = "1.3.0"; version = "2.1.0";
sha256 = "1y9jhh9pchrr48zgfib2jip97x1fkm7qb1gnfx477rmmryjs500h"; sha256 = "0wc8v48bb0bkvypc0j6imvnf8xc8572hykk9sgjhzf2w0ggqxv5d";
}; };
}.${versions.majorMinor nixpkgsVersion}; }.${versions.majorMinor nixpkgsVersion};

View File

@ -8,11 +8,12 @@
}: }:
mkDerivation { mkDerivation {
pname = "much"; pname = "much";
version = "1.1.0"; version = "1.2.0";
src = fetchgit { src = fetchgit {
url = "http://cgit.ni.krebsco.de/much"; url = "https://cgit.krebsco.de/much";
sha256 = "1325554zymr1dd0clj8c5ygl70c791csvs0hz33jcfr6b8wysdrl"; sha256 = "0gfvppi8acylz0q7xh8dkm3dj676d4sc1m1gxwp663bkn4748873";
rev = "dfec37d848e11c00d9b7f03295af1fc7b0e83ef5"; rev = "8fc4fbb5bb7781626da8f63cd8df8bb0f554cfe7";
fetchSubmodules = true;
}; };
isLibrary = false; isLibrary = false;
isExecutable = true; isExecutable = true;

View File

@ -6,11 +6,11 @@
}: }:
mkDerivation { mkDerivation {
pname = "reaktor2"; pname = "reaktor2";
version = "0.1.3"; version = "0.1.4";
src = fetchgit { src = fetchgit {
url = "https://cgit.krebsco.de/reaktor2"; url = "https://cgit.krebsco.de/reaktor2";
sha256 = "15qhycfja7psnd7v5hn4qb5wrs6bjx4qhny49nkhb7agj4vzwnwi"; sha256 = "1qfm3vb78r02ma8wdcfbwzmigj6skjl53nmp2z7czjcfjhm1zyq5";
rev = "6c629a0cc422872abdfc40f9621ac0c4f6a420a8"; rev = "147f818a72f4561ed57131e0d181704b599d09f6";
fetchSubmodules = true; fetchSubmodules = true;
}; };
isLibrary = false; isLibrary = false;

View File

@ -1,3 +0,0 @@
{ haskellPackages, ... }:
haskellPackages.callPackage ./cabal.nix {}

View File

@ -225,7 +225,7 @@ in {
msmtp msmtp
mutt mutt
pkgs.notmuch pkgs.notmuch
pkgs.much pkgs.haskellPackages.much
tag-new-mails tag-new-mails
tag-old-mails tag-old-mails
]; ];

View File

@ -1,13 +1,10 @@
{ pkgs, ... }: { pkgs, ... }: {
with pkgs;
{
environment.systemPackages = [ environment.systemPackages = [
much pkgs.haskellPackages.much
msmtp pkgs.msmtp
notmuch pkgs.notmuch
pythonPackages.alot pkgs.pythonPackages.alot
qprint pkgs.qprint
w3m pkgs.w3m
]; ];
} }