about summary refs log tree commit diff
path: root/flake.nix
blob: 8c00da251e7aab9e1afd758a11da48864e8af1b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
  description = "Yet another photo gallery generator.";

  outputs = { self, nixpkgs }: {

    packages.x86_64-linux.gal =
    with import nixpkgs { system = "x86_64-linux"; };
    stdenv.mkDerivation {
      pname = "gal";
      version = "0.1";

      src = self;

      installPhase = ''
        mkdir -p $out/bin $out/share/gal
        cp gal $out/bin
        cp style.css $out/share/gal

        sed -i 's:convert:${imagemagick}/bin/convert:g' $out/bin/gal
        sed -i "s:style.css:$out/share/gal/style.css:g" $out/bin/gal
      '';
    };

    defaultPackage.x86_64-linux = self.packages.x86_64-linux.gal;

  };
}