Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
PIM
Kalendar
Commits
63e9a2f5
Commit
63e9a2f5
authored
Sep 11, 2022
by
Claudio Cambra
Browse files
Flake fixes
Signed-off-by:
Claudio Cambra
<
claudio.cambra@gmail.com
>
parent
12bf285c
Pipeline
#230412
passed with stage
in 3 minutes and 45 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
flake.nix
View file @
63e9a2f5
...
...
@@ -62,33 +62,32 @@
libsForQt5
.
akonadi-calendar
libsForQt5
.
kdepim-runtime
];
packages
=
{
kalendar
=
pkgs
.
stdenv
.
mkDerivation
rec
{
inherit
nativeBuildInputs
buildInputs
;
pname
=
"kalendar"
;
version
=
"dev"
;
src
=
./.
;
propagatedUserEnvPkgs
=
with
pkgs
;
[
libsForQt5
.
akonadi
libsForQt5
.
kdepim-runtime
];
};
packages
.
default
=
with
pkgs
;
stdenv
.
mkDerivation
rec
{
inherit
nativeBuildInputs
buildInputs
;
pname
=
"kalendar"
;
version
=
"dev"
;
src
=
./.
;
propagatedUserEnvPkgs
=
[
libsForQt5
.
akonadi
libsForQt5
.
kdepim-runtime
];
dontStrip
=
true
;
enableDebugging
=
true
;
separateDebugInfo
=
false
;
};
apps
=
{
kalendar
=
mkApp
{
name
=
"Kalendar"
;
drv
=
packages
.
kalendar
;
};
apps
.
default
=
mkApp
{
name
=
"kalendar"
;
drv
=
packages
.
default
;
};
in
{
inherit
packages
apps
;
defaultPackage
=
packages
.
kalendar
;
defaultApp
=
apps
.
kalendar
;
devShell
=
pkgs
.
mkShell
{
inherit
buildInputs
;
nativeBuildInputs
=
with
pkgs
;
nativeBuildInputs
++
[
clang-tools
libclang
.
python
ninja
gdb
];
name
=
"kalendar-shell"
;
shellHook
=
''
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment