logesq: pass a function to mkDerivation for easier overrides
This commit is contained in:
parent
457beb8d79
commit
1a50f52409
1 changed files with 5 additions and 2 deletions
|
@ -8,7 +8,10 @@
|
||||||
, nix-update-script
|
, nix-update-script
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation (finalAttrs: let
|
||||||
|
inherit (finalAttrs) pname version src appimageContents;
|
||||||
|
|
||||||
|
in {
|
||||||
pname = "logseq";
|
pname = "logseq";
|
||||||
version = "0.9.10";
|
version = "0.9.10";
|
||||||
|
|
||||||
|
@ -69,4 +72,4 @@ stdenv.mkDerivation rec {
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ ];
|
||||||
platforms = [ "x86_64-linux" ];
|
platforms = [ "x86_64-linux" ];
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Reference in a new issue