uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
81
pkgs/development/libraries/zeitgeist/default.nix
Normal file
81
pkgs/development/libraries/zeitgeist/default.nix
Normal file
|
|
@ -0,0 +1,81 @@
|
|||
{ stdenv
|
||||
, lib
|
||||
, fetchFromGitLab
|
||||
, pkg-config
|
||||
, glib
|
||||
, sqlite
|
||||
, gobject-introspection
|
||||
, vala
|
||||
, autoconf
|
||||
, automake
|
||||
, libtool
|
||||
, gettext
|
||||
, dbus
|
||||
, gtk3
|
||||
, json-glib
|
||||
, librdf_raptor2
|
||||
, pythonSupport ? true
|
||||
, python3
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "zeitgeist";
|
||||
version = "1.0.4";
|
||||
|
||||
outputs = [ "out" "lib" "dev" "man" ] ++ lib.optional pythonSupport "py";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "gitlab.freedesktop.org";
|
||||
owner = pname;
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "kG1N8DXgjYAJ8fbrGHsp7eTqB20H5smzRnW0PSRUYR0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoconf
|
||||
automake
|
||||
libtool
|
||||
pkg-config
|
||||
gettext
|
||||
gobject-introspection
|
||||
vala
|
||||
python3
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
glib
|
||||
sqlite
|
||||
dbus
|
||||
gtk3
|
||||
json-glib
|
||||
librdf_raptor2
|
||||
python3.pkgs.rdflib
|
||||
];
|
||||
|
||||
configureFlags = [
|
||||
"--disable-telepathy"
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
postPatch = ''
|
||||
patchShebangs data/ontology2code
|
||||
'';
|
||||
|
||||
preConfigure = ''
|
||||
NOCONFIGURE=1 ./autogen.sh
|
||||
'';
|
||||
|
||||
postFixup = lib.optionalString pythonSupport ''
|
||||
moveToOutput lib/${python3.libPrefix} "$py"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "A service which logs the users’s activities and events";
|
||||
homepage = "https://zeitgeist.freedesktop.org/";
|
||||
maintainers = teams.freedesktop.members ++ (with maintainers; [ ]);
|
||||
license = licenses.lgpl21Plus;
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue