Skip to content
This repository was archived by the owner on Jun 28, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,5 @@
makeFlags = [ "prefix=$(out)" ];
}
) {};
logo = pkgs.callPackage ./logo/package.nix {};
}
11 changes: 11 additions & 0 deletions logo/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,17 @@ white, keeping the spacing exact.
This variant is monochrome, with the shadow gradients baked-in as opacity
changes.

### Optimized version

The SVG files in this directory are the authoring files.

In other words, they are busy with inkscape-specific properties, used when
editing the files.

If what is needed is a file optimized for size, and for using as an asset,
the Nix expression in this directory can be used to produce optimized SVGs.


License
-------

Expand Down
1 change: 1 addition & 0 deletions logo/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
(import ../. {}).logo
38 changes: 38 additions & 0 deletions logo/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{ runCommand
, lib
, inkscape
, nodePackages
}:

runCommand "nixos-artwork-logos" {
logos = [
# The snowflake-only variants
"nix-snowflake-colours"
"nix-snowflake-white"

# The horizontal variants
"nixos"
"nixos-white"

# The vertical variant
"nixos-text-below"
];
src = lib.cleanSource ./.;
nativeBuildInputs = [
inkscape
nodePackages.svgo
];
} ''
PS4=" $ "
for f in $logos; do
mkdir -p $out
printf ":: ⇒ %s\n" "$f"
(set -x
inkscape --export-background-opacity=0 --export-plain-svg --export-filename=$out/$f.svg "$src/$f.svg"
inkscape --export-background-opacity=0 --export-filename=$out/$f.png "$src/$f.svg"
)
done
(set -x
svgo --pretty --multipass --folder "$out"
)
''