3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/pantheon/artwork/elementary-sound-theme/default.nix

41 lines
767 B
Nix
Raw Normal View History

{ lib
, stdenv
, fetchFromGitHub
, nix-update-script
, meson
, ninja
2021-01-17 02:21:50 +00:00
, pkg-config
}:
2018-08-20 21:31:18 +01:00
stdenv.mkDerivation rec {
pname = "elementary-sound-theme";
version = "1.1.0";
2018-08-20 21:31:18 +01:00
src = fetchFromGitHub {
owner = "elementary";
repo = "sound-theme";
2018-08-20 21:31:18 +01:00
rev = version;
sha256 = "sha256-fR6gtKx9J6o2R1vQZ5yx4kEX3Ak+q8I6hRVMZzyB2E8=";
2018-08-20 21:31:18 +01:00
};
nativeBuildInputs = [
meson
ninja
2021-01-17 02:21:50 +00:00
pkg-config
2018-08-20 21:31:18 +01:00
];
passthru = {
updateScript = nix-update-script {
attrPath = "pantheon.${pname}";
};
};
meta = with lib; {
2018-08-20 21:31:18 +01:00
description = "A set of system sounds for elementary";
homepage = "https://github.com/elementary/sound-theme";
2018-08-20 21:31:18 +01:00
license = licenses.unlicense;
platforms = platforms.linux;
maintainers = teams.pantheon.members;
2018-08-20 21:31:18 +01:00
};
}