mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 19:02:57 +00:00
59 lines
1.2 KiB
Nix
59 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
, wrapGAppsHook4
|
|
, appstream-glib
|
|
, blueprint-compiler
|
|
, desktop-file-utils
|
|
, meson
|
|
, ninja
|
|
, pkg-config
|
|
, glib
|
|
, gjs
|
|
, libadwaita
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "design";
|
|
version = "46-alpha1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "dubstar-04";
|
|
repo = "Design";
|
|
rev = "v${version}";
|
|
fetchSubmodules = true;
|
|
hash = "sha256-Q4R/Ztu4w8IRvq15xNXN/iP/6hIHe/W+me1jROGpYc8=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
appstream-glib
|
|
blueprint-compiler
|
|
desktop-file-utils
|
|
gjs
|
|
meson
|
|
ninja
|
|
pkg-config
|
|
wrapGAppsHook4
|
|
];
|
|
|
|
buildInputs = [
|
|
glib
|
|
libadwaita
|
|
];
|
|
|
|
# Use a symlink here so that the basename isn't changed by the wrapper which is used to decide the resource path.
|
|
postInstall = ''
|
|
mv $out/bin/io.github.dubstar_04.design $out/share/design/
|
|
ln -s $out/share/design/io.github.dubstar_04.design $out/bin
|
|
'';
|
|
|
|
meta = {
|
|
homepage = "https://github.com/dubstar-04/Design";
|
|
description = "2D CAD For GNOME";
|
|
maintainers = with lib.maintainers; [ linsui ];
|
|
license = lib.licenses.gpl3Plus;
|
|
platforms = lib.platforms.linux;
|
|
mainProgram = "io.github.dubstar_04.design";
|
|
};
|
|
}
|