nixpkgs/pkgs/development/libraries/umockdev/default.nix
Ryan Mulligan 99fbca02ff umockdev: 0.11 -> 0.11.1
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done:

- built on NixOS
- ran `/nix/store/cm17lsw2d83wwlh6hd7slh9amjlqrv7a-umockdev-0.11.1/bin/umockdev-run -h` got 0 exit code
- ran `/nix/store/cm17lsw2d83wwlh6hd7slh9amjlqrv7a-umockdev-0.11.1/bin/umockdev-run --help` got 0 exit code
- ran `/nix/store/cm17lsw2d83wwlh6hd7slh9amjlqrv7a-umockdev-0.11.1/bin/umockdev-run --version` and found version 0.11.1
- ran `/nix/store/cm17lsw2d83wwlh6hd7slh9amjlqrv7a-umockdev-0.11.1/bin/umockdev-record -h` got 0 exit code
- ran `/nix/store/cm17lsw2d83wwlh6hd7slh9amjlqrv7a-umockdev-0.11.1/bin/umockdev-record --help` got 0 exit code
- ran `/nix/store/cm17lsw2d83wwlh6hd7slh9amjlqrv7a-umockdev-0.11.1/bin/umockdev-record --version` and found version 0.11.1
- found 0.11.1 with grep in /nix/store/cm17lsw2d83wwlh6hd7slh9amjlqrv7a-umockdev-0.11.1
- found 0.11.1 in filename of file in /nix/store/cm17lsw2d83wwlh6hd7slh9amjlqrv7a-umockdev-0.11.1
2018-03-09 15:20:31 -08:00

26 lines
703 B
Nix

{ stdenv, fetchFromGitHub, automake, autoconf, libtool, gtk-doc
, pkgconfig, glib, systemd, libgudev, vala }:
stdenv.mkDerivation rec {
name = "umockdev-${version}";
version = "0.11.1";
src = fetchFromGitHub {
owner = "martinpitt";
repo = "umockdev";
rev = version;
sha256 ="0cmswac8m7zfvk6cb8k5iisqr7arnn1yhcmasri072yz0pmr6dr0";
};
buildInputs = [ glib systemd libgudev ];
nativeBuildInputs = [ automake autoconf libtool gtk-doc pkgconfig vala ];
preConfigure = "NOCONFIGURE=1 ./autogen.sh";
meta = with stdenv.lib; {
description = "Mock hardware devices for creating unit tests";
license = licenses.lgpl2;
maintainers = [ maintainers.ndowens ];
};
}