Add broken decsync package
This commit is contained in:
parent
3ae6fd49a3
commit
6b726ea4d2
2 changed files with 20 additions and 0 deletions
1
nixos/.gitignore
vendored
Normal file
1
nixos/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
||||||
|
result
|
19
nixos/packages/decsync-evolution/default.nix
Normal file
19
nixos/packages/decsync-evolution/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
with import <nixpkgs> {};
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "evolution-decsync";
|
||||||
|
version = "1.0.1";
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "39aldo39";
|
||||||
|
repo = "Evolution-DecSync";
|
||||||
|
rev = "v1.0.1";
|
||||||
|
sha256 = "0cq5cvc9ywcbwrhj5nm9azjmjwc8hxfbw3r7bjqkjd0bwfnxk3g6";
|
||||||
|
fetchSubmodules = true;
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [ libgee json-glib gnome3.evolution-data-server gnome3.evolution gtk3 webkitgtk glib libsecret libsoup];
|
||||||
|
nativeBuildInputs = [ meson ninja vala pkg-config ];
|
||||||
|
configurePhase = "meson build --prefix=$out";
|
||||||
|
buildPhase = "ninja -C build";
|
||||||
|
installPhase = "ninja -C build install";
|
||||||
|
}
|
Loading…
Reference in a new issue