3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #215347 from michaelgrahamevans/shipments

This commit is contained in:
Sandro 2023-02-26 22:34:00 +01:00 committed by GitHub
commit c9fa9b5503
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 58 additions and 1 deletions

View file

@ -9680,6 +9680,12 @@
github = "michaelBelsanti";
githubId = 62124625;
};
michaelgrahamevans = {
email = "michaelgrahamevans@gmail.com";
name = "Michael Evans";
github = "michaelgrahamevans";
githubId = 5932424;
};
michaelpj = {
email = "michaelpj@gmail.com";
github = "michaelpj";

View file

@ -0,0 +1,49 @@
{ desktop-file-utils
, fetchurl
, gobject-introspection
, gtk3
, lib
, libhandy
, meson
, ninja
, pkg-config
, python3
, stdenv
, wrapGAppsHook
}:
stdenv.mkDerivation rec {
pname = "shipments";
version = "0.3.0";
src = fetchurl {
url = "https://git.sr.ht/~martijnbraam/shipments/archive/${version}.tar.gz";
sha256 = "1znybldx21wjnb8qy6q9p52pi6lfz81743xgrnjmvjji4spwaipf";
};
nativeBuildInputs = [
desktop-file-utils
meson
ninja
pkg-config
wrapGAppsHook
];
buildInputs = [
gobject-introspection
gtk3
libhandy
(python3.withPackages (ps: with ps; [
pygobject3
requests
]))
];
meta = with lib; {
description = "Postal package tracking application";
homepage = "https://sr.ht/~martijnbraam/shipments/";
changelog = "https://git.sr.ht/~martijnbraam/shipments/refs/${version}";
license = licenses.lgpl3;
maintainers = with maintainers; [ michaelgrahamevans ];
};
}

View file

@ -32920,9 +32920,11 @@ with pkgs;
shfmt = callPackage ../tools/text/shfmt { };
shipments = callPackage ../applications/misc/shipments { };
shortwave = callPackage ../applications/audio/shortwave { };
shotgun = callPackage ../tools/graphics/shotgun {};
shotgun = callPackage ../tools/graphics/shotgun { };
shutter = callPackage ../applications/graphics/shutter { };