mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-17 15:09:26 +03:00
rimgo: init at 1.2.0
This commit is contained in:
parent
8bb564a26f
commit
264cd9ebfa
1 changed files with 40 additions and 0 deletions
40
pkgs/by-name/ri/rimgo/package.nix
Normal file
40
pkgs/by-name/ri/rimgo/package.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
fetchFromGitea,
|
||||||
|
buildGoModule,
|
||||||
|
tailwindcss,
|
||||||
|
}:
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "rimgo";
|
||||||
|
version = "1.2.0";
|
||||||
|
|
||||||
|
src = fetchFromGitea {
|
||||||
|
domain = "codeberg.org";
|
||||||
|
owner = "rimgo";
|
||||||
|
repo = "rimgo";
|
||||||
|
rev = "v${version}";
|
||||||
|
hash = "sha256-C878ABs978viVtIuv3fPn2F2anOg2GB/+f5jaCO13tc=";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorHash = "sha256-u5N7aI9RIQ3EmiyHv0qhMcKkvmpp+5G7xbzdQcbhybs=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ tailwindcss ];
|
||||||
|
|
||||||
|
preBuild = ''
|
||||||
|
tailwindcss -i static/tailwind.css -o static/app.css -m
|
||||||
|
'';
|
||||||
|
|
||||||
|
ldflags = [
|
||||||
|
"-s"
|
||||||
|
"-w"
|
||||||
|
"-X codeberg.org/rimgo/rimgo/pages.VersionInfo=${version}"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "An alternative frontend for Imgur";
|
||||||
|
homepage = "https://codeberg.org/rimgo/rimgo";
|
||||||
|
license = licenses.agpl3Only;
|
||||||
|
mainProgram = "rimgo";
|
||||||
|
maintainers = with maintainers; [ quantenzitrone ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue