mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-26 02:05:02 +00:00
kdePackages.kio-snapshot: init at 1.0.0
This commit is contained in:
@@ -78,6 +78,7 @@ let
|
||||
kio-extras-kf5 = self.callPackage ./misc/kio-extras-kf5 { };
|
||||
kio-fuse = self.callPackage ./misc/kio-fuse { };
|
||||
kio-s3 = self.callPackage ./misc/kio-s3 { };
|
||||
kio-snapshot = self.callPackage ./misc/kio-snapshot { };
|
||||
klevernotes = self.callPackage ./misc/klevernotes { };
|
||||
ktextaddons = self.callPackage ./misc/ktextaddons { };
|
||||
kup = self.callPackage ./misc/kup { };
|
||||
|
||||
25
pkgs/kde/misc/kio-snapshot/default.nix
Normal file
25
pkgs/kde/misc/kio-snapshot/default.nix
Normal file
@@ -0,0 +1,25 @@
|
||||
{
|
||||
lib,
|
||||
mkKdeDerivation,
|
||||
fetchurl,
|
||||
pkg-config,
|
||||
btrfs-progs,
|
||||
}:
|
||||
mkKdeDerivation rec {
|
||||
pname = "kio-snapshot";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/kio-snapshot/kio-snapshot-${version}.tar.xz";
|
||||
hash = "sha256-RxPQxgsYa+8LwPmSCTyLriRz03gIro1zF5qyVxzop9I=";
|
||||
};
|
||||
|
||||
extraNativeBuildInputs = [ pkg-config ];
|
||||
|
||||
extraBuildInputs = [ btrfs-progs ];
|
||||
|
||||
meta = {
|
||||
license = lib.licenses.lgpl2Plus;
|
||||
maintainers = [ lib.maintainers.i-love-lean ];
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user