diff options
author | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-12-14 10:57:31 +0100 |
---|---|---|
committer | Ismaël Bouya <ismael.bouya@normalesup.org> | 2018-12-14 10:58:00 +0100 |
commit | 29120e770a57d04219fe4087210fe959348200a1 (patch) | |
tree | 979188aefd05c5a7a6697cf28641e30c151d7e4e | |
parent | ac6bfec23ff1cf0b39e47200b0e33c8614fbdfd4 (diff) | |
download | Nix-29120e770a57d04219fe4087210fe959348200a1.tar.gz Nix-29120e770a57d04219fe4087210fe959348200a1.tar.zst Nix-29120e770a57d04219fe4087210fe959348200a1.zip |
Add ldapvi and timewarrior
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | default.nix | 9 | ||||
-rw-r--r-- | ldapvi.json | 6 |
3 files changed, 15 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d6944e3 --- /dev/null +++ b/.gitignore | |||
@@ -0,0 +1 @@ | |||
/result* | |||
diff --git a/default.nix b/default.nix index 1844121..d828027 100644 --- a/default.nix +++ b/default.nix | |||
@@ -50,13 +50,20 @@ let | |||
50 | configureFlags = oldAttrs.configureFlags ++ [ "--with-slrnpull" ]; | 50 | configureFlags = oldAttrs.configureFlags ++ [ "--with-slrnpull" ]; |
51 | }); | 51 | }); |
52 | 52 | ||
53 | ldapvi = nixpkgs.ldapvi.overrideAttrs (oldAttrs: rec { | ||
54 | name = "ldapvi-${version}"; | ||
55 | version = "f1d42ba-master"; | ||
56 | src = fetchgit (lib.importJSON ./ldapvi.json); | ||
57 | }); | ||
58 | |||
53 | #weechat = callPackage nixpkgs.weechat { guileSupport = false; luaSupport = false; rubySupport = false; tclSupport = false; }; | 59 | #weechat = callPackage nixpkgs.weechat { guileSupport = false; luaSupport = false; rubySupport = false; tclSupport = false; }; |
54 | in | 60 | in |
55 | { | 61 | { |
56 | inherit nix-prefetch-scripts; | 62 | inherit nix-prefetch-scripts; |
57 | inherit ledger; | 63 | inherit ledger; |
58 | inherit taskwarrior vit; | 64 | inherit taskwarrior vit timewarrior; |
59 | inherit weboob; | 65 | inherit weboob; |
60 | inherit slrn; | 66 | inherit slrn; |
61 | inherit sc-im; | 67 | inherit sc-im; |
68 | inherit ldapvi; | ||
62 | } | 69 | } |
diff --git a/ldapvi.json b/ldapvi.json new file mode 100644 index 0000000..d04f22c --- /dev/null +++ b/ldapvi.json | |||
@@ -0,0 +1,6 @@ | |||
1 | { | ||
2 | "url": "http://www.lichteblau.com/git/ldapvi.git", | ||
3 | "rev": "f1d42bad66cc4623d1ff21fbd5dddbf5009d3e40", | ||
4 | "sha256": "0c2h4b1spp9z6a16gy9azf0wyxq397yy7001x1zlvc7c60q11wry", | ||
5 | "fetchSubmodules": false | ||
6 | } | ||