Skip to content

Commit

Permalink
Merge pull request #258669 from dotlambda/impression-init
Browse files Browse the repository at this point in the history
impression: init at 2.1
  • Loading branch information
dotlambda authored Oct 7, 2023
2 parents d09cd1d + 5e99f75 commit 20cd454
Showing 1 changed file with 69 additions and 0 deletions.
69 changes: 69 additions & 0 deletions pkgs/by-name/im/impression/package.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
{ lib
, stdenv
, fetchFromGitLab
, blueprint-compiler
, cargo
, desktop-file-utils
, meson
, ninja
, pkg-config
, rustPlatform
, rustc
, wrapGAppsHook4
, cairo
, dbus
, gdk-pixbuf
, glib
, gtk4
, libadwaita
, pango
}:

stdenv.mkDerivation rec {
pname = "impression";
version = "2.1";

src = fetchFromGitLab {
owner = "adhami3310";
repo = "Impression";
rev = "v${version}";
hash = "sha256-Pq1Pz/uNBsk4UdtCwA5gmZoS+kiDrCbpum4ABW7oocA=";
};

cargoDeps = rustPlatform.fetchCargoTarball {
inherit src;
name = "${pname}-${version}";
hash = "sha256-eIfDuz4ewTzmLDKShro3VkoXAZEUOKu133eD/z75jjY=";
};

nativeBuildInputs = [
blueprint-compiler
cargo
desktop-file-utils
meson
ninja
pkg-config
rustPlatform.cargoSetupHook
rustc
wrapGAppsHook4
];

buildInputs = [
cairo
dbus
gdk-pixbuf
glib
gtk4
libadwaita
pango
];

meta = {
description = "Straight-forward and modern application to create bootable drives";
homepage = "https://gitlab.com/adhami3310/Impression";
license = lib.licenses.gpl3Only;
mainProgram = "impression";
maintainers = with lib.maintainers; [ dotlambda ];
platforms = lib.platforms.linux;
};
}

0 comments on commit 20cd454

Please sign in to comment.