Merge pull request #204683 from figsoda/popsicle
popsicle: unstable-2021-12-20 -> 1.3.1, add figsoda as a maintainer
This commit is contained in:
commit
a9cb6a684a
1 changed files with 25 additions and 44 deletions
|
@ -1,73 +1,54 @@
|
||||||
{ stdenv
|
{ lib
|
||||||
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, rustc
|
|
||||||
, cargo
|
|
||||||
, rustPlatform
|
, rustPlatform
|
||||||
, pkg-config
|
|
||||||
, dbus
|
|
||||||
, glib
|
, glib
|
||||||
, cairo
|
, pkg-config
|
||||||
, pango
|
|
||||||
, atk
|
|
||||||
, lib
|
|
||||||
, gdk-pixbuf
|
, gdk-pixbuf
|
||||||
, gtk3
|
, gtk3
|
||||||
|
, wrapGAppsHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage.override { stdenv = stdenv; } rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "popsicle";
|
pname = "popsicle";
|
||||||
version = "unstable-2021-12-20";
|
version = "1.3.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "pop-os";
|
owner = "pop-os";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "b02ebf5f2e6c18777453ca9a144d69689a6fa901";
|
rev = version;
|
||||||
sha256 = "03ilhvnr4mwy7b8bipp616h16m2ilxzxz2zjpkzy3afwvh9bz1mx";
|
sha256 = "sha256-NqzuZmVabQ5WHOlBEsJhL/5Yet3TMSuo/gofSabCjTY=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "1c54wxyrfxk5chnjhxw6vaznm7ff9dkx1rxlgp417jfygiwijjs4";
|
cargoDeps = rustPlatform.fetchCargoTarball {
|
||||||
|
inherit src;
|
||||||
|
sha256 = "sha256-k2M1c9kk1blE0ZKjstDQANdbUzI4oS1Ho5P+sR4cRtg=";
|
||||||
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ gtk3 pkg-config ];
|
nativeBuildInputs = [
|
||||||
|
glib
|
||||||
|
pkg-config
|
||||||
|
rustPlatform.cargoSetupHook
|
||||||
|
rustPlatform.rust.cargo
|
||||||
|
rustPlatform.rust.rustc
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gtk3
|
|
||||||
dbus
|
|
||||||
glib
|
|
||||||
cairo
|
|
||||||
pango
|
|
||||||
atk
|
|
||||||
gdk-pixbuf
|
gdk-pixbuf
|
||||||
|
gtk3
|
||||||
];
|
];
|
||||||
|
|
||||||
# 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=$cargoDepsCopy")
|
|
||||||
'';
|
|
||||||
|
|
||||||
makeFlags = [
|
makeFlags = [
|
||||||
"PREFIX=${placeholder "out"}"
|
"prefix=$(out)"
|
||||||
"DESTDIR=${placeholder "out"}"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
postInstall = ''
|
|
||||||
# install man page, icon, etc...
|
|
||||||
mv $out/usr/local/* $out
|
|
||||||
rm -rf $out/usr
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Multiple USB File Flasher";
|
description = "Multiple USB File Flasher";
|
||||||
homepage = "https://github.com/pop-os/popsicle";
|
homepage = "https://github.com/pop-os/popsicle";
|
||||||
maintainers = with maintainers; [ _13r0ck ];
|
changelog = "https://github.com/pop-os/popsicle/releases/tag/${version}";
|
||||||
|
maintainers = with maintainers; [ _13r0ck figsoda ];
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
platforms = [ "aarch64-linux" "x86_64-linux" ];
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue