about summary refs log tree commit diff
path: root/pkgs/tools/misc/popsicle
diff options
context:
space:
mode:
author13r0ck <bnr@tuta.io>2021-12-28 03:24:41 -0700
committer13r0ck <bnr@tuta.io>2022-01-05 19:06:00 -0700
commitd2e6d89ba7048ac644a405aeb5a91946b0cd05c0 (patch)
treed05cc9e09e01bb6d93c09c99b58a1ebd520173e3 /pkgs/tools/misc/popsicle
parentb167c7f1623d5a441240a868cf014705c18f2fbe (diff)
popsicle: init at unstable-2021-12-20
Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com>

use better command

Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com>

remove duplicate

Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com>

remove newline

Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com>

use correct package

Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com>

add arm support

Tested on aarch64 and still works

revert

Co-authored-by: legendofmiracles <30902201+legendofmiracles@users.noreply.github.com>
Diffstat (limited to 'pkgs/tools/misc/popsicle')
-rw-r--r--pkgs/tools/misc/popsicle/default.nix73
1 files changed, 73 insertions, 0 deletions
diff --git a/pkgs/tools/misc/popsicle/default.nix b/pkgs/tools/misc/popsicle/default.nix
new file mode 100644
index 0000000000000..e9369270fcd00
--- /dev/null
+++ b/pkgs/tools/misc/popsicle/default.nix
@@ -0,0 +1,73 @@
+{ stdenv
+, fetchFromGitHub
+, rustc
+, cargo
+, rustPlatform
+, pkg-config
+, dbus
+, glib
+, cairo
+, pango
+, atk
+, lib
+, gdk-pixbuf
+, gtk3
+}:
+
+rustPlatform.buildRustPackage.override { stdenv = stdenv; } rec {
+  pname = "popsicle";
+  version = "unstable-2021-12-20";
+
+  src = fetchFromGitHub {
+    owner = "pop-os";
+    repo = pname;
+    rev = "b02ebf5f2e6c18777453ca9a144d69689a6fa901";
+    sha256 = "03ilhvnr4mwy7b8bipp616h16m2ilxzxz2zjpkzy3afwvh9bz1mx";
+  };
+
+  cargoSha256 = "1c54wxyrfxk5chnjhxw6vaznm7ff9dkx1rxlgp417jfygiwijjs4";
+
+  nativeBuildInputs = [ gtk3 pkg-config ];
+
+  buildInputs = [
+    gtk3
+    dbus
+    glib
+    cairo
+    pango
+    atk
+    gdk-pixbuf
+  ];
+
+  # Use the stdenv default phases (./configure; make) instead of the
+  # ones from buildRustPackage.
+  configurePhase = "configurePhase";
+  buildPhase = "buildPhase";
+  checkPhase = "checkPhase";
+  installPhase = "installPhase";
+
+  postPatch = ''
+    # Have to do this here instead of in preConfigure because
+    # cargoDepsCopy gets unset after postPatch.
+    configureFlagsArray+=("RUST_VENDORED_SOURCES=$NIX_BUILD_TOP/$cargoDepsCopy")
+  '';
+
+  makeFlags = [
+    "PREFIX=${placeholder "out"}"
+    "DESTDIR=${placeholder "out"}"
+  ];
+
+  postInstall = ''
+    # install man page, icon, etc...
+    mv $out/usr/local/* $out
+    rm -rf $out/usr
+  '';
+
+  meta = with lib; {
+    description = "Multiple USB File Flasher";
+    homepage = "https://github.com/pop-os/popsicle";
+    maintainers = with maintainers; [ _13r0ck ];
+    license = licenses.mit;
+    platforms = [ "aarch64-linux" "x86_64-linux" ];
+  };
+}